using Customers.Api.Contracts.Responses; using Customers.Api.Endpoints; using FastEndpoints; namespace Customers.Api.Summaries; public class GetAllCustomersSummary : Summary { public GetAllCustomersSummary() { Summary = "Returns all the customers in the system"; Description = "Returns all the customers in the system"; Response(200, "All customers in the system are returned"); } }