From 45f6baaac3309ca8c6baeb7c211f40d878f5b59b Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Fri, 17 Oct 2025 00:13:41 +0100 Subject: [PATCH] created quotation's dtos --- .../Request/PatchQuotationConditionsSaleDto.cs | 7 +++++++ .../DTO/Quotation/Request/PatchQuotationMessageDto.cs | 7 +++++++ PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs | 10 ++++++++++ 3 files changed, 24 insertions(+) create mode 100644 PyroFetes/DTO/Quotation/Request/PatchQuotationConditionsSaleDto.cs create mode 100644 PyroFetes/DTO/Quotation/Request/PatchQuotationMessageDto.cs create mode 100644 PyroFetes/DTO/Quotation/Response/GetQuotationDto.cs 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