added UpdateQuotationDto.cs

This commit is contained in:
2025-12-12 21:18:13 +01:00
parent 65cff130e4
commit 2fa74ccba8
3 changed files with 44 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
namespace PyroFetes.DTO.Quotation.Request;
public class UpdateQuotationDto
{
public int Id { get; set; }
public string? Message { get; set; }
public string? ConditionsSale { get; set; }
}