mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 18:49:06 +00:00
26 lines
784 B
C#
26 lines
784 B
C#
using System.Reflection;
|
|
|
|
using AIStudio.Tools.Rust;
|
|
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Dialogs;
|
|
|
|
/// <summary>
|
|
/// The update dialog that is used to inform the user about an available update.
|
|
/// </summary>
|
|
public partial class UpdateDialog : ComponentBase
|
|
{
|
|
private static readonly Assembly ASSEMBLY = Assembly.GetExecutingAssembly();
|
|
private static readonly MetaDataAttribute META_DATA = ASSEMBLY.GetCustomAttribute<MetaDataAttribute>()!;
|
|
|
|
[CascadingParameter]
|
|
private MudDialogInstance MudDialog { get; set; } = null!;
|
|
|
|
[Parameter]
|
|
public UpdateResponse UpdateResponse { get; set; }
|
|
|
|
private void Cancel() => this.MudDialog.Cancel();
|
|
|
|
private void Confirm() => this.MudDialog.Close(DialogResult.Ok(true));
|
|
} |