* add music videos library * add music video tables * first pass at music video library scan * support music videos in playouts * display music videos in search results and collections * fix music video thumbnails * remove some obsolete fields
12 lines
285 B
C#
12 lines
285 B
C#
using System.Collections.Generic;
|
|
using ErsatzTV.Core.Search;
|
|
using LanguageExt;
|
|
|
|
namespace ErsatzTV.Application.MediaCards
|
|
{
|
|
public record MusicVideoCardResultsViewModel(
|
|
int Count,
|
|
List<MusicVideoCardViewModel> Cards,
|
|
Option<SearchPageMap> PageMap);
|
|
}
|