ZenithInfo/Util/SwaggerTheme/CustomStyle.cs

13 lines
289 B
C#
Raw Normal View History

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