Skip to content

Instantly share code, notes, and snippets.

@vmandic
Last active May 14, 2019 08:51
Show Gist options
  • Select an option

  • Save vmandic/4e645ee5041ce53354a8bfa846764326 to your computer and use it in GitHub Desktop.

Select an option

Save vmandic/4e645ee5041ce53354a8bfa846764326 to your computer and use it in GitHub Desktop.
meds-processor, part/4, snippet #6
using Microsoft.AspNetCore.Mvc;
namespace MedsProcessor.WebAPI.Controllers
{
[ApiController, Route("api)"]
[Consumes("application/json"), Produces("application/json")]
[ProducesResponseType(406), ProducesResponseType(426)]
[ProducesResponseType(200), ProducesResponseType(400), ProducesResponseType(500)]
public abstract class ApiControllerBase : ControllerBase { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment