using PyroFetes.DTO.QuotationProduct.Response; namespace PyroFetes.DTO.Quotation.Response; public class GetQuotationDto { public int Id { get; set; } public string? Message { get; set; } public List? GetQuotationProductDto { get; set; } }