20 lines
409 B
C#
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
|
|
}
|
|
} |