Skip to content

Instantly share code, notes, and snippets.

@justinyoo
Last active August 20, 2017 14:24
Embed
What would you like to do?
Swashbuckle Pro Tips for ASP.NET Web API #3
public static class SwaggerConfig
{
public static void Register(HttpConfiguration config)
{
config
.EnableSwagger(c =>
{
...
c.SchemaFilter(() => new Requests(typeof(ValueRequestModel)));
c.SchemaFilter(() => new Responses(typeof(ValueResponseModel)));
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment