e6179601fb
- Fix display error
29 lines
611 B
C#
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
|
|
}
|
|
} |