10 lines
285 B
C#
10 lines
285 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 List<CreateProductQuotationDto>? Products { get; set; }
|
|
} |