Initial commit to new repository

This commit is contained in:
2026-04-03 18:22:19 +09:00
commit 4458bb0f52
7672 changed files with 452440 additions and 0 deletions

View 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; }
}