* 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
13 lines
254 B
C#
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);
|
|
}
|