* 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
6 lines
193 B
C#
6 lines
193 B
C#
namespace ErsatzTV.Application.MediaCards
|
|
{
|
|
public record ActorCardViewModel(int Id, string Name, string Role, string Thumb) :
|
|
MediaCardViewModel(Id, Name, Role, Name, Thumb);
|
|
}
|