* flag local movies as file not found * show warning icon on cards * unflag movie that is found during scan * skip missing files when building playouts * add state to search index * add file not found health check * link to search from file not found health check * support flagging other media kinds as file not found * continue to schedule missing items * support episode files not found * wip trash page * fix trash url * trash page is functional * update changelog * fix changelog merge
26 lines
526 B
C#
26 lines
526 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) : MediaCardViewModel(
|
|
MusicVideoId,
|
|
Title,
|
|
Subtitle,
|
|
SortTitle,
|
|
Poster,
|
|
State)
|
|
{
|
|
public int CustomIndex { get; set; }
|
|
}
|
|
}
|