Files
PyroFetes-Sujet1/PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs

11 lines
327 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 string? ConditionsSale { get; set; }
public List<GetQuotationProductDto>? GetQuotationProductDto { get; set; }
}