Files
aviq-boilerplate/CityInfo.WEB/Components/PageHeader.razor.cs
T
2026-03-22 01:10:14 +01:00

15 lines
364 B
C#

using Microsoft.AspNetCore.Components;
namespace CityInfo.WEB.Components
{
public partial class PageHeader
{
[Parameter]
public string Name { get; set; } = string.Empty;
[Parameter]
public string NameType { get; set; } = string.Empty;
[Parameter]
public string Link { get; set; } = string.Empty;
}
}