Created all endpoints for Quotation and QuotationProduct

This commit is contained in:
2025-10-17 01:05:50 +01:00
parent 45f6baaac3
commit ff590302e2
11 changed files with 353 additions and 4 deletions

View File

@@ -6,5 +6,6 @@ public class GetQuotationDto
{
public int Id { get; set; }
public string? Message { get; set; }
public string? ConditionsSale { get; set; }
public List<GetQuotationProductDto>? GetQuotationProductDto { get; set; }
}