12 lines
271 B
C#
12 lines
271 B
C#
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");
|
|
}
|