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.
23 lines
606 B
23 lines
606 B
using System.Collections.Generic; |
|
using System.Globalization; |
|
using ErsatzTV.Application.MediaCards; |
|
|
|
namespace ErsatzTV.Application.Movies |
|
{ |
|
public record MovieViewModel( |
|
string Title, |
|
string Year, |
|
string Plot, |
|
List<string> Genres, |
|
List<string> Tags, |
|
List<string> Studios, |
|
List<string> ContentRatings, |
|
List<CultureInfo> Languages, |
|
List<ActorCardViewModel> Actors, |
|
List<string> Directors, |
|
List<string> Writers) |
|
{ |
|
public string Poster { get; set; } |
|
public string FanArt { get; set; } |
|
} |
|
}
|
|
|