* add actor metadata * show actors in ui * get full movie/show metadata from plex * store actor thumbnail url * rework movie detail page * metadata fixes * rework show detail page * rework artist page * code cleanup
11 lines
303 B
C#
11 lines
303 B
C#
namespace ErsatzTV.Application.MediaCards
|
|
{
|
|
public record ArtistCardViewModel
|
|
(int ArtistId, string Title, string Subtitle, string SortTitle, string Poster) : MediaCardViewModel(
|
|
ArtistId,
|
|
Title,
|
|
Subtitle,
|
|
SortTitle,
|
|
Poster);
|
|
}
|