mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-13 05:21:37 +00:00
15 lines
371 B
C#
15 lines
371 B
C#
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AIStudio.Components;
|
|
|
|
public partial class AttachmentsDialog : MSGComponentBase
|
|
{
|
|
[CascadingParameter]
|
|
private IMudDialogInstance MudDialog { get; set; } = null!;
|
|
|
|
[Parameter]
|
|
public HashSet<string> DocumentPaths { get; set; } = new();
|
|
|
|
private void Cancel() => this.MudDialog.Cancel();
|
|
|
|
} |