2025-04-27 14:13:15 +00:00
|
|
|
@inherits MSGComponentBase
|
2024-04-20 15:07:27 +00:00
|
|
|
<MudDialog>
|
|
|
|
<DialogContent>
|
2025-06-09 12:13:31 +00:00
|
|
|
<MudJustifiedText Typo="Typo.body1">
|
2025-04-27 14:13:15 +00:00
|
|
|
@this.Message
|
2025-06-09 12:13:31 +00:00
|
|
|
</MudJustifiedText>
|
2024-04-20 15:07:27 +00:00
|
|
|
</DialogContent>
|
|
|
|
<DialogActions>
|
2025-04-27 14:13:15 +00:00
|
|
|
<MudButton OnClick="@this.Cancel" Variant="Variant.Filled">
|
|
|
|
@T("No")
|
|
|
|
</MudButton>
|
|
|
|
<MudButton OnClick="@this.Confirm" Variant="Variant.Filled" Color="Color.Error">
|
|
|
|
@T("Yes")
|
|
|
|
</MudButton>
|
2024-04-20 15:07:27 +00:00
|
|
|
</DialogActions>
|
|
|
|
</MudDialog>
|