Initial version

This commit is contained in:
2026-06-20 10:24:36 +02:00
parent f85b83d90f
commit 7e1173bf2c
40 changed files with 5438 additions and 63 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace EonaCat.DoxaApi.Generation
{
public sealed class DoxaApiOptions
{
public string Title { get; set; } = "DoxaApi Documentation";
public string? Description { get; set; }
public string Version { get; set; } = "v1";
public string RoutePrefix { get; set; } = "doxa";
public List<string> Servers { get; set; } = new();
public string Theme { get; set; } = "auto";
public string AccentColor { get; set; } = "#6366f1";
}
}