Files
ersatztv/ErsatzTV.Application/Movies/MovieViewModel.cs
T
Jason DoveandGitHub 76d6725dd5 add movie and show genres (#61)
* load movie genres from sidecar metadata

* search movie and tv show genres

* rebuild all playouts (needed after time zone fix)

* code cleanup

* fix duplicate tv show search results
2021-03-11 02:42:04 +00:00

13 lines
254 B
C#

using System.Collections.Generic;
namespace ErsatzTV.Application.Movies
{
public record MovieViewModel(
string Title,
string Year,
string Plot,
string Poster,
string FanArt,
List<string> Genres);
}