15 lines
272 B
C#
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; }
|
|
|
|
}
|
|
}
|