mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
444 B
21 lines
444 B
using ErsatzTV.Core.Domain; |
|
|
|
namespace ErsatzTV.Application.MediaCards; |
|
|
|
public record TelevisionSeasonCardViewModel |
|
( |
|
string ShowTitle, |
|
int TelevisionSeasonId, |
|
int TelevisionSeasonNumber, |
|
string Title, |
|
string Subtitle, |
|
string SortTitle, |
|
string Poster, |
|
string Placeholder, |
|
MediaItemState State) : MediaCardViewModel( |
|
TelevisionSeasonId, |
|
Title, |
|
Subtitle, |
|
SortTitle, |
|
Poster, |
|
State);
|
|
|