@this.Description
@if (this.Body is not null)
{
@this.Body
}
@if (this.ShowDedicatedProgress && this.isProcessing)
{
}
@if (this.ShowResult && this.resultingContentBlock is not null)
{
}
@if (this.FooterButtons.Count > 0)
{
@foreach (var button in this.FooterButtons)
{
switch (button)
{
case ButtonData buttonData when !string.IsNullOrWhiteSpace(buttonData.Tooltip):
@buttonData.Text
break;
case ButtonData buttonData:
@buttonData.Text
break;
}
}
}