Last active
May 15, 2019 21:35
-
-
Save vmandic/ff5101761bca76b23099c137c2fb99ba to your computer and use it in GitHub Desktop.
meds-processor, part/4, snippet #13
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.AspNetCore.Authorization; | |
using Microsoft.AspNetCore.Mvc; | |
namespace MedsProcessor.WebAPI.Controllers.v1_0 | |
{ | |
[ApiVersion("1.0"), Route("api/v{apiVersion:apiVersion}")] | |
[ProducesResponseType(401), ProducesResponseType(403)] | |
public abstract class ApiV1ControllerBase : ApiControllerBase { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment