diff --git a/PyroFetes/DTO/Quotation/Request/PatchQuotationConditionsSaleDto.cs b/PyroFetes/DTO/Quotation/Request/PatchQuotationConditionsSaleDto.cs new file mode 100644 index 0000000..bd3137c --- /dev/null +++ b/PyroFetes/DTO/Quotation/Request/PatchQuotationConditionsSaleDto.cs @@ -0,0 +1,7 @@ +namespace PyroFetes.DTO.Quotation.Request; + +public class PatchQuotationConditionsSaleDto +{ + public int Id { get; set; } + public string? ConditionsSale { get; set; } +} \ No newline at end of file diff --git a/PyroFetes/DTO/Quotation/Request/PatchQuotationMessageDto.cs b/PyroFetes/DTO/Quotation/Request/PatchQuotationMessageDto.cs new file mode 100644 index 0000000..7604466 --- /dev/null +++ b/PyroFetes/DTO/Quotation/Request/PatchQuotationMessageDto.cs @@ -0,0 +1,7 @@ +namespace PyroFetes.DTO.Quotation.Request; + +public class PatchQuotationMessageDto +{ + public int Id { get; set; } + public string? Message { get; set; } +} \ No newline at end of file diff --git a/PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs b/PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs new file mode 100644 index 0000000..877c8e2 --- /dev/null +++ b/PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs @@ -0,0 +1,10 @@ +using PyroFetes.DTO.QuotationProduct.Response; + +namespace PyroFetes.DTO.Quotation.Response; + +public class GetQuotationDto +{ + public int Id { get; set; } + public string? Message { get; set; } + public List? GetQuotationProductDto { get; set; } +} \ No newline at end of file