С помощью следующего кода Swaggger UI отображает модель RegistrationInfo, но не модель UserInfo.
Как мне заставить это генерировать?
[Produces("application/json")]
[Authorize(AuthenticationSchemes = JwtBearerDefaults.AuthenticationScheme)]
[Route("api")]
public class UserController : Controller
{
[HttpPost("RegisterUser")]
public IActionResult RegisterUser([FromBody] RegistrationInfo info)
{
UserInfo data = UserData.RegisterUser(info);
if (data != null)
{
return Ok(data);
}
return NoContent();
}
}