@namespace Oqtane.Modules.Controls
@inherits ModuleControlBase
@if (!string.IsNullOrEmpty(Message))
{
@Message
@if (Dismissible)
{
}
}
@code {
[Parameter]
public bool Dismissible { get; set; } = true;
[Parameter]
public string Message { get; set; }
[Parameter]
public AlertType Type { get; set; }
protected override void OnInitialized()
{
base.OnInitialized();
}
}