fix errors in Price's DTO

This commit is contained in:
2025-11-06 18:51:46 +01:00
parent 65b5e6afe3
commit a535f8cfeb
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ public class UpdatePriceDto
public int SupplierDeliveryDelay { get; set; } public int SupplierDeliveryDelay { get; set; }
public int ProductId { get; set; } public int ProductId { get; set; }
public int ProductReferences { get; set; } public string? ProductReferences { get; set; }
public string? ProductName { get; set; } public string? ProductName { get; set; }
public decimal ProductDuration {get; set;} public decimal ProductDuration {get; set;}
public decimal ProductCaliber { get; set; } public decimal ProductCaliber { get; set; }

View File

@@ -15,7 +15,7 @@ public class GetPriceDto
public int SupplierDeliveryDelay { get; set; } public int SupplierDeliveryDelay { get; set; }
public int ProductId { get; set; } public int ProductId { get; set; }
public int ProductReferences { get; set; } public string? ProductReferences { get; set; }
public string? ProductName { get; set; } public string? ProductName { get; set; }
public decimal ProductDuration {get; set;} public decimal ProductDuration {get; set;}
public decimal ProductCaliber { get; set; } public decimal ProductCaliber { get; set; }