Files
PyroFetes-Sujet1/PyroFetes/DTO/Quotation/Request/UpdateQuotationDto.cs

8 lines
203 B
C#

namespace PyroFetes.DTO.Quotation.Request;
public class UpdateQuotationDto
{
public int Id { get; set; }
public string? Message { get; set; }
public string? ConditionsSale { get; set; }
}