16 lines
396 B
C#
16 lines
396 B
C#
using System.Collections.Generic;
|
|
using ErsatzTV.Application.MediaCards;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace ErsatzTV.Shared
|
|
{
|
|
public partial class FragmentLetterAnchor<TCard> where TCard : MediaCardViewModel
|
|
{
|
|
[Parameter]
|
|
public RenderFragment<TCard> ChildContent { get; set; }
|
|
|
|
[Parameter]
|
|
public List<TCard> Cards { get; set; }
|
|
}
|
|
}
|