Files
BeWoPlaner/BeWo/ViewModel/IAiPromptbausteinComplexViewModel.cs
2026-06-12 11:21:28 +02:00

19 lines
471 B
C#

using DevExpress.Mvvm;
namespace BeWo.ViewModel
{
/// <summary>
/// Gemeinsamer Vertrag der Promptbaustein-ViewModels (Verwaltung + Auswahl),
/// gegen den das AiPromptbausteinLibraryControl im Code-Behind arbeitet.
/// </summary>
public interface IAiPromptbausteinComplexViewModel
{
AiPromptbausteinFolderVM SelectedFolder { get; set; }
DelegateCommand OpenEditFolderDialogCommand { get; }
void UpdateFolderCommands();
void UpdatePromptCommands();
}
}