예제 #1
0
        public async Task <IActionResult> Authorize([FromBody] AuthorizationModel model)
        {
            var resonse = await _authLogic.AuthorizeAsync(model);

            return(Ok(resonse));
        }