Files
PyroFetes-Sujet1/PyroFetes/DTO/Quotation/Request/CreateQuotationDto.cs
T

12 lines
365 B
C#

using PyroFetes.DTO.QuotationProduct.Request;
namespace PyroFetes.DTO.Quotation.Request;
public class CreateQuotationDto
{
public string? Message { get; set; }
public string? ConditionsSale { get; set; }
public int CustomerId { get; set; }
public int SupplierId { get; set; }
public List<CreateProductQuotationDto>? Products { get; set; }
}