Files
mapo-core/MP-TAB3/Components/DisabledAlert.razor.cs
T
Samuele Locatelli c8bb1065c7 Fix naming (maybe)
2023-12-18 11:40:46 +01:00

20 lines
415 B
C#

using global::Microsoft.AspNetCore.Components;
namespace MP_TAB3.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
}
}