using Customers.Api.Contracts.Responses; using Customers.Api.Endpoints; using FastEndpoints; namespace Customers.Api.Summaries; public class CreateCustomerSummary : Summary { public CreateCustomerSummary() { Summary = "Creates a new customer in the system"; Description = "Creates a new customer in the system"; Response(201, "Customer was successfully created"); Response(400, "The request did not pass validation checks"); } }