LookingGlass/Util/SwaggerTheme/CustomStyle.cs

13 lines
271 B
C#
Raw Normal View History

2025-01-29 18:09:21 +00:00
using System;
using AspNetCore.Swagger.Themes;
namespace Myhm.Util.SwaggerTheme;
public class CustomStyle : ModernStyle
{
protected CustomStyle(string fileName)
: base(fileName) { }
public static CustomStyle CustomModern => new("modern.custom.css");
}