Initial commit to new repository
This commit is contained in:
26
.decompiledproj/AxCopilot/Services/TopicPreset.cs
Normal file
26
.decompiledproj/AxCopilot/Services/TopicPreset.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
namespace AxCopilot.Services;
|
||||
|
||||
public class TopicPreset
|
||||
{
|
||||
public string Category { get; set; } = "";
|
||||
|
||||
public string Label { get; set; } = "";
|
||||
|
||||
public string Symbol { get; set; } = "";
|
||||
|
||||
public string Color { get; set; } = "";
|
||||
|
||||
public string Description { get; set; } = "";
|
||||
|
||||
public string SystemPrompt { get; set; } = "";
|
||||
|
||||
public string Placeholder { get; set; } = "";
|
||||
|
||||
public int Order { get; set; } = 50;
|
||||
|
||||
public string Tab { get; set; } = "Chat";
|
||||
|
||||
public bool IsCustom { get; set; }
|
||||
|
||||
public string? CustomId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user