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.
18 lines
434 B
18 lines
434 B
using System.Globalization; |
|
using ErsatzTV.Application.MediaCards; |
|
|
|
namespace ErsatzTV.Application.Television; |
|
|
|
public record TelevisionShowViewModel( |
|
int Id, |
|
string Title, |
|
string Year, |
|
string Plot, |
|
string Poster, |
|
string FanArt, |
|
List<string> Genres, |
|
List<string> Tags, |
|
List<string> Studios, |
|
List<string> ContentRatings, |
|
List<CultureInfo> Languages, |
|
List<ActorCardViewModel> Actors);
|
|
|