using System.Collections.Generic; using ErsatzTV.Application.MediaCards; using Microsoft.AspNetCore.Components; namespace ErsatzTV.Shared { public partial class FragmentLetterAnchor where TCard : MediaCardViewModel { [Parameter] public RenderFragment ChildContent { get; set; } [Parameter] public List Cards { get; set; } } }