From 8a04adeec325654de4eed2a00249988782a63190 Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Sun, 30 Nov 2025 15:35:08 +0100 Subject: [PATCH] updated GetSupplierDto.cs --- PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs b/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs index dbd2ffb..2edbe93 100644 --- a/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs +++ b/PyroFetes/DTO/Supplier/Response/GetSupplierDto.cs @@ -1,3 +1,4 @@ +using PyroFetes.DTO.Price.Response; using PyroFetes.DTO.Product.Response; namespace PyroFetes.DTO.Supplier.Response; @@ -13,4 +14,5 @@ public class GetSupplierDto public string? City { get; set; } public int DeliveryDelay { get; set; } public List? Products { get; set; } + public List? Prices { get; set; } } \ No newline at end of file