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