Specify API returns types for swagger
This commit is contained in:
@@ -16,7 +16,9 @@ public static class CreateCar
|
||||
{
|
||||
return builder
|
||||
.MapPost("cars", Endpoint)
|
||||
.WithTags("Cars");
|
||||
.WithTags("Cars")
|
||||
.Produces<Response>(201)
|
||||
.ProducesValidationProblem();
|
||||
}
|
||||
|
||||
public class Validator : AbstractValidator<Request>
|
||||
|
||||
Reference in New Issue
Block a user