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