-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathActionItem.cs
65 lines (57 loc) · 1.88 KB
/
ActionItem.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* *******************************************************************************************************************
* Application: ChatGPTExtension
*
* Autor: Daniel Liedke
*
* Copyright © Daniel Liedke 2024
* Usage and reproduction in any manner whatsoever without the written permission of Daniel Liedke is strictly forbidden.
*
* Purpose: ActionItem class is used to store custom actions to send to GPT
*
* *******************************************************************************************************************/
using System.ComponentModel;
namespace ChatGPTExtension
{
public partial class ConfigurationWindow
{
#region Private Classes
/// <summary>
/// Represents a single action with a name and a prompt.
/// </summary>
public class ActionItem : INotifyPropertyChanged
{
private string _name;
private string _prompt;
public string Name
{
get { return _name; }
set
{
if (_name != value)
{
_name = value;
OnPropertyChanged("Name");
}
}
}
public string Prompt
{
get { return _prompt; }
set
{
if (_prompt != value)
{
_prompt = value;
OnPropertyChanged("Prompt");
}
}
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
}
}