├── .gitignore ├── LICENSE ├── README.md └── SwaggerUI ├── Controllers └── EmployeeController.cs ├── Models └── Employee.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── SwaggerUI.csproj ├── SwaggerUI.csproj.user ├── SwaggerUI.sln ├── SwaggerUI.xml ├── appsettings.Development.json ├── appsettings.json └── wwwroot └── swagger └── ui ├── custom.css ├── favicon-16x16.png ├── favicon-32x32.png ├── index.html ├── oauth2-redirect.html ├── swagger-ui-bundle.js ├── swagger-ui-bundle.js.map ├── swagger-ui-standalone-preset.js ├── swagger-ui-standalone-preset.js.map ├── swagger-ui.css ├── swagger-ui.css.map ├── swagger-ui.js └── swagger-ui.js.map /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/README.md -------------------------------------------------------------------------------- /SwaggerUI/Controllers/EmployeeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/Controllers/EmployeeController.cs -------------------------------------------------------------------------------- /SwaggerUI/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/Models/Employee.cs -------------------------------------------------------------------------------- /SwaggerUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/Program.cs -------------------------------------------------------------------------------- /SwaggerUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /SwaggerUI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/Startup.cs -------------------------------------------------------------------------------- /SwaggerUI/SwaggerUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/SwaggerUI.csproj -------------------------------------------------------------------------------- /SwaggerUI/SwaggerUI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/SwaggerUI.csproj.user -------------------------------------------------------------------------------- /SwaggerUI/SwaggerUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/SwaggerUI.sln -------------------------------------------------------------------------------- /SwaggerUI/SwaggerUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/SwaggerUI.xml -------------------------------------------------------------------------------- /SwaggerUI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/appsettings.Development.json -------------------------------------------------------------------------------- /SwaggerUI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/appsettings.json -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/custom.css -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/favicon-16x16.png -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/favicon-32x32.png -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/index.html -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/oauth2-redirect.html -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/swagger-ui-bundle.js -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/swagger-ui.css -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/swagger-ui.css.map -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/swagger-ui.js -------------------------------------------------------------------------------- /SwaggerUI/wwwroot/swagger/ui/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/swagger-ui-asp-net-core/HEAD/SwaggerUI/wwwroot/swagger/ui/swagger-ui.js.map --------------------------------------------------------------------------------