11 lines
265 B
C#
11 lines
265 B
C#
using AspNetCore.Swagger.Themes;
|
|
|
|
namespace LookingGlass.Util.SwaggerTheme;
|
|
|
|
public class CustomStyle : ModernStyle
|
|
{
|
|
protected CustomStyle(string fileName)
|
|
: base(fileName) { }
|
|
|
|
public static CustomStyle CustomModern => new("modern.custom.css");
|
|
}
|