Files
2026-03-22 01:10:14 +01:00

15 lines
272 B
C#

using Microsoft.AspNetCore.Components;
namespace CityInfo.WEB.Components
{
public partial class Card
{
[Parameter]
public string? HeaderTitle { get; set; }
[Parameter]
public RenderFragment? ChildContent { get; set; }
}
}