* 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
14 lines
283 B
C#
14 lines
283 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ErsatzTV.Application.Television
|
|
{
|
|
public record TelevisionShowViewModel(
|
|
int Id,
|
|
string Title,
|
|
string Year,
|
|
string Plot,
|
|
string Poster,
|
|
string FanArt,
|
|
List<string> Genres);
|
|
}
|