Files
mapo-core/MP-TAB-SERV/Components/DisabledAlert.razor.cs
T
2023-10-26 11:44:54 +02:00

20 lines
419 B
C#

using global::Microsoft.AspNetCore.Components;
namespace MP_TAB_SERV.Components
{
public partial class DisabledAlert
{
#region Public Properties
[Parameter]
public string Message { get; set; } = "";
[Parameter]
public string Subtitle { get; set; } = "";
[Parameter]
public string Title { get; set; } = "";
#endregion Public Properties
}
}