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