Facebook
From Toxic Lemur, 1 Year ago, written in C#.
Embed
Download Paste or View Raw
Hits: 119
  1. public class UsersController : ApiControllerBase
  2. {
  3.     [HttpPost("Authenticate")]
  4.     [ProducesResponseType(StatusCodes.Status200OK, Type = typeof(UsersAuthenticateCommandResult))]
  5.     [ProducesResponseType(StatusCodes.Status400BadRequest, Type = typeof(UsersAuthenticateCommandResult))]
  6.     public async Task<IActionResult> Authenticate(UsersAuthenticateCommand command)
  7.     {
  8.         return await Mediator.Send(command);
  9.     }
  10. }

Replies to Untitled rss

Title Name Language When
Re: Untitled Gruff Pig csharp 1 Year ago.