Files
mapo-core/MP-TAB3/Components/DisabledAlert.razor.cs
Samuele Locatelli e6179601fb TAB3:
- Fix display error
2024-10-15 11:16:21 +02:00

29 lines
611 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
#region Protected Methods
protected MarkupString FixTxt(string origText)
{
return new MarkupString(origText);
}
#endregion Protected Methods
}
}