adding some views

This commit is contained in:
2026-03-22 16:28:01 +01:00
parent 498d46c10f
commit 7594d179a8
16 changed files with 327 additions and 92 deletions
+8 -1
View File
@@ -2,6 +2,11 @@
namespace CityInfo.WEB.Components
{
public enum LinkType
{
Create,
Edit
}
public partial class PageHeader
{
[Parameter]
@@ -9,6 +14,8 @@ namespace CityInfo.WEB.Components
[Parameter]
public string NameType { get; set; } = string.Empty;
[Parameter]
public string Link { get; set; } = string.Empty;
public string? Link { get; set; }
[Parameter]
public LinkType LinkType { get; set; } = LinkType.Create;
}
}