@namespace Oqtane.Modules.Controls @inherits ModuleControlBase @if (!string.IsNullOrEmpty(Message)) { } @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(); } }