Files
PyroFetes-Sujet1/PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs
2025-10-17 00:13:41 +01:00

10 lines
279 B
C#

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>? GetQuotationProductDto { get; set; }
}