27 lines
536 B
C#
27 lines
536 B
C#
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; }
|
|
}
|