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