* add custom index to collection items * add custom collection order to ui * cleanup
14 lines
356 B
C#
14 lines
356 B
C#
namespace ErsatzTV.Application.MediaCards
|
|
{
|
|
public record MovieCardViewModel
|
|
(int MovieId, string Title, string Subtitle, string SortTitle, string Poster) : MediaCardViewModel(
|
|
MovieId,
|
|
Title,
|
|
Subtitle,
|
|
SortTitle,
|
|
Poster)
|
|
{
|
|
public int CustomIndex { get; set; }
|
|
}
|
|
}
|