* upgrade dependencies * allow blocks with same name in different groups * code cleanup
25 lines
465 B
C#
25 lines
465 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.MediaCards;
|
|
|
|
public record MusicVideoCardViewModel(
|
|
int MusicVideoId,
|
|
string Title,
|
|
string Subtitle,
|
|
string SortTitle,
|
|
string Plot,
|
|
string Album,
|
|
string Poster,
|
|
MediaItemState State,
|
|
string Path,
|
|
string LocalPath) : MediaCardViewModel(
|
|
MusicVideoId,
|
|
Title,
|
|
Subtitle,
|
|
SortTitle,
|
|
Poster,
|
|
State)
|
|
{
|
|
public int CustomIndex { get; set; }
|
|
}
|