Files
ersatztv/ErsatzTV.Application/MediaCards/OtherVideoCardResultsViewModel.cs
T

12 lines
285 B
C#

using System.Collections.Generic;
using ErsatzTV.Core.Search;
using LanguageExt;
namespace ErsatzTV.Application.MediaCards
{
public record OtherVideoCardResultsViewModel(
int Count,
List<OtherVideoCardViewModel> Cards,
Option<SearchPageMap> PageMap);
}