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.
24 lines
586 B
24 lines
586 B
using System.Globalization; |
|
using ErsatzTV.Application.MediaCards; |
|
using ErsatzTV.Core.Domain; |
|
|
|
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, |
|
string Path, |
|
MediaItemState MediaItemState) |
|
{ |
|
public string Poster { get; set; } |
|
public string FanArt { get; set; } |
|
}
|
|
|