Files
EonaCat.DoxaApi/DoxaApi/Generation/DoxaApiOptions.cs
T
2026-06-20 10:26:27 +02:00

14 lines
495 B
C#

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