Files
ersatztv/ErsatzTV.Application/MediaCards/OtherVideoCardViewModel.cs
T
b91ab5d898 Fixing Artwork OtherVideo rel (#1774)
* Fixing Artwork OtherVideo rel

* show other video artwork in ui

* don't run code quality on PRs

* update changelog

---------

Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
2024-07-05 09:16:09 -05:00

21 lines
391 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Application.MediaCards;
public record OtherVideoCardViewModel(
int OtherVideoId,
string Title,
string Subtitle,
string SortTitle,
string Poster,
MediaItemState State) : MediaCardViewModel(
OtherVideoId,
Title,
Subtitle,
SortTitle,
Poster,
State)
{
public int CustomIndex { get; set; }
}