14 lines
495 B
C#
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";
|
|
}
|
|
}
|