Files
2023-06-30 18:02:24 +02:00

20 lines
409 B
C#

using Microsoft.AspNetCore.Components;
namespace SHERPA.BBM.UI.Components
{
public partial class HomeButton
{
#region Public Properties
[Parameter]
public string Descript { get; set; } = "";
[Parameter]
public string Icon { get; set; } = "";
[Parameter]
public string NavLink { get; set; } = "";
#endregion Public Properties
}
}