fix an error in product attribute

This commit is contained in:
2025-10-09 19:02:09 +01:00
parent 25d1407bd2
commit ddbd662c2a
3 changed files with 0 additions and 3 deletions

View File

@@ -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; }

View File

@@ -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; }

View File

@@ -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; }