* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
13 lines
331 B
C#
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; }
|
|
} |