Unused
This commit is contained in:
@@ -1,31 +0,0 @@
|
||||
using BeWo.Core.EventArg;
|
||||
using BS.Shared.Core;
|
||||
using DevExpress.Mvvm;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows;
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace BeWo.ViewModel.View.AI
|
||||
{
|
||||
public class AiPromptbausteinChatResultViewModel : DialogViewModel
|
||||
{
|
||||
public AiPromptbausteinChatResultViewModel()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public string SelectedText => "Example";
|
||||
public event EventHandler<TextAcceptedEventArgs> Accepted;
|
||||
|
||||
private void Accept_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
Accepted?.Invoke(this,
|
||||
new TextAcceptedEventArgs(SelectedText));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user