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 Servers { get; set; } = new(); public string Theme { get; set; } = "auto"; public string AccentColor { get; set; } = "#6366f1"; } }