Skip to content

Instantly share code, notes, and snippets.

@gavilanch
Created June 4, 2020 16:25
Show Gist options
  • Save gavilanch/b62ce56640dfb1d313b723d2a43bdc22 to your computer and use it in GitHub Desktop.
Save gavilanch/b62ce56640dfb1d313b723d2a43bdc22 to your computer and use it in GitHub Desktop.
// Versión 1
namespace WebApiSwaggerVersion.Controllers.V1
{
[ApiController]
[Route("api/v1/[controller]")]
public class WeatherForecastController : ControllerBase
{...}
}
// Versión 2
namespace WebApiSwaggerVersion.Controllers.V2
{
[ApiController]
[Route("api/v2/[controller]")]
public class WeatherForecastController : ControllerBase
{...}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment