* rework plex movie library scanner; add unavailable media item state * plex television scanner improvements * reset plex etags as needed * update changelog
29 lines
559 B
C#
29 lines
559 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.MediaCards;
|
|
|
|
public record TelevisionEpisodeCardViewModel
|
|
(
|
|
int EpisodeId,
|
|
DateTime Aired,
|
|
string ShowTitle,
|
|
int ShowId,
|
|
int SeasonId,
|
|
int Season,
|
|
int Episode,
|
|
string Title,
|
|
string SortTitle,
|
|
string Plot,
|
|
string Poster,
|
|
List<string> Directors,
|
|
List<string> Writers,
|
|
MediaItemState State,
|
|
string Path,
|
|
string LocalPath) : MediaCardViewModel(
|
|
EpisodeId,
|
|
Title,
|
|
$"Episode {Episode}",
|
|
SortTitle,
|
|
Poster,
|
|
State);
|