From 658d346dd076aaf59708f39200e61aee9abba24f Mon Sep 17 00:00:00 2001 From: colesm Date: Wed, 8 Oct 2025 16:35:46 +0200 Subject: [PATCH] MAJ --- PyroFetes/DTO/Product/Request/CreateProductDto.cs | 6 +----- PyroFetes/DTO/Product/Request/UpdateProductDto.cs | 5 ----- PyroFetes/DTO/Product/Response/GetProductDto.cs | 6 +----- 3 files changed, 2 insertions(+), 15 deletions(-) diff --git a/PyroFetes/DTO/Product/Request/CreateProductDto.cs b/PyroFetes/DTO/Product/Request/CreateProductDto.cs index 305aa8f..a704c38 100644 --- a/PyroFetes/DTO/Product/Request/CreateProductDto.cs +++ b/PyroFetes/DTO/Product/Request/CreateProductDto.cs @@ -17,9 +17,5 @@ public class CreateProductDto public int ClassificationId { get; set;} public int ProductCategoryId { get; set; } - public List? Brands { get; set; } - public List? Effects { get; set; } - public List? Colors {get; set;} - public List? Prices {get; set;} - public List? WarehouseProducts {get; set; } + } \ No newline at end of file diff --git a/PyroFetes/DTO/Product/Request/UpdateProductDto.cs b/PyroFetes/DTO/Product/Request/UpdateProductDto.cs index d22198a..1bc96a4 100644 --- a/PyroFetes/DTO/Product/Request/UpdateProductDto.cs +++ b/PyroFetes/DTO/Product/Request/UpdateProductDto.cs @@ -17,9 +17,4 @@ public class UpdateProductDto public string? Link { get; set; } public int ClassificationId { get; set;} public int ProductCategoryId { get; set; } - public List? Brands { get; set; } - public List? Effects { get; set; } - public List? Colors {get; set;} - public List? Prices {get; set;} - public List? WarehouseProducts {get; set; } } \ No newline at end of file diff --git a/PyroFetes/DTO/Product/Response/GetProductDto.cs b/PyroFetes/DTO/Product/Response/GetProductDto.cs index 3aae16b..dbfed6a 100644 --- a/PyroFetes/DTO/Product/Response/GetProductDto.cs +++ b/PyroFetes/DTO/Product/Response/GetProductDto.cs @@ -19,9 +19,5 @@ public class GetProductDto public string? ClassificationLabel { get; set; } public int ProductCategoryId { get; set; } public string? ProductCategoryLabel { get; set; } - public List? Brands { get; set; } - public List? Effects { get; set; } - public List? Colors {get; set;} - public List? Prices {get; set;} - public List? WarehouseProducts {get; set; } + } \ No newline at end of file