mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-13 21:26:27 +00:00
19 lines
441 B
C#
19 lines
441 B
C#
|
|
using AIStudio.Components;
|
||
|
|
|
||
|
|
using Microsoft.AspNetCore.Components;
|
||
|
|
|
||
|
|
namespace AIStudio.Dialogs;
|
||
|
|
|
||
|
|
public partial class UpdateInstructionsDialog : MSGComponentBase
|
||
|
|
{
|
||
|
|
[CascadingParameter]
|
||
|
|
private IMudDialogInstance MudDialog { get; set; } = null!;
|
||
|
|
|
||
|
|
[Parameter]
|
||
|
|
public string Message { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
[Parameter]
|
||
|
|
public string? ReleaseUrl { get; set; }
|
||
|
|
|
||
|
|
private void Close() => this.MudDialog.Close();
|
||
|
|
}
|