* add custom index to collection items * add custom collection order to ui * cleanup
21 lines
451 B
C#
21 lines
451 B
C#
namespace ErsatzTV.Application.MediaCards
|
|
{
|
|
public record TelevisionSeasonCardViewModel
|
|
(
|
|
string ShowTitle,
|
|
int TelevisionSeasonId,
|
|
int TelevisionSeasonNumber,
|
|
string Title,
|
|
string Subtitle,
|
|
string SortTitle,
|
|
string Poster,
|
|
string Placeholder) : MediaCardViewModel(
|
|
TelevisionSeasonId,
|
|
Title,
|
|
Subtitle,
|
|
SortTitle,
|
|
Poster)
|
|
{
|
|
}
|
|
}
|