* 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>
21 lines
391 B
C#
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; }
|
|
}
|