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