Files
ersatztv/ErsatzTV/Shared/FragmentLetterAnchor.razor.cs
T
Jason DoveandGitHub 1ab98578ab refactor namespaces and imports (#670)
* re-namespace

* optimize usings

* more usings

* more of the same

* more implicit/global usings

* cleanup all usings

* minor fixes
2022-03-03 15:36:07 -06:00

13 lines
331 B
C#

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; }
}