ZenithInfo/Util/SwaggerTheme/CustomStyle.cs
cswimr 50122f8447
feat: first pass at theming swagger
this is a WIP, will return to this once we have endpoints on the swagger ui
2025-01-01 09:25:21 -05:00

12 lines
289 B
C#

using System;
using AspNetCore.Swagger.Themes;
namespace ZenithInfo.Util.SwaggerTheme;
public class CustomStyle : ModernStyle
{
protected CustomStyle(string fileName)
: base(fileName) { }
public static CustomStyle CustomModern => new("modern.custom.css");
}