diff --git a/PyroFetes/DTO/Product/Request/CreateProductDto.cs b/PyroFetes/DTO/Product/Request/CreateProductDto.cs index 03ef300..24ecf17 100644 --- a/PyroFetes/DTO/Product/Request/CreateProductDto.cs +++ b/PyroFetes/DTO/Product/Request/CreateProductDto.cs @@ -9,7 +9,6 @@ public class CreateProductDto public int ApprovalNumber { get; set; } public decimal Weight { get; set; } public decimal Nec { get; set; } - public decimal SellingPrice { get; set; } public string? Image { get; set; } public string? Link { get; set; } public int MinimalQuantity { get; set; } diff --git a/PyroFetes/DTO/Product/Request/UpdateProductDto.cs b/PyroFetes/DTO/Product/Request/UpdateProductDto.cs index 499602a..0548119 100644 --- a/PyroFetes/DTO/Product/Request/UpdateProductDto.cs +++ b/PyroFetes/DTO/Product/Request/UpdateProductDto.cs @@ -10,7 +10,6 @@ public class UpdateProductDto public int ApprovalNumber { get; set; } public decimal Weight { get; set; } public decimal Nec { get; set; } - public decimal SellingPrice { get; set; } public string? Image { get; set; } public string? Link { get; set; } public int MinimalQuantity { get; set; } diff --git a/PyroFetes/DTO/Product/Response/GetProductDto.cs b/PyroFetes/DTO/Product/Response/GetProductDto.cs index bf69644..6781381 100644 --- a/PyroFetes/DTO/Product/Response/GetProductDto.cs +++ b/PyroFetes/DTO/Product/Response/GetProductDto.cs @@ -10,7 +10,6 @@ public class GetProductDto public int ApprovalNumber { get; set; } public decimal Weight { get; set; } public decimal Nec { get; set; } - public decimal SellingPrice { get; set; } public string? Image { get; set; } public string? Link { get; set; } public int MinimalQuantity { get; set; }