Actualiser PyroFetes/DTO/Price/Request/CreatePriceDto.cs

This commit is contained in:
2025-11-09 18:48:23 +01:00
parent 7d92f80de3
commit bbd8d3d36a

View File

@@ -4,7 +4,7 @@ public class CreatePriceDto
{
public decimal SellingPrice { get; set; }
public int SupplierId { get; set; }
public int? SupplierId { get; set; }
public string? SupplierName { get; set; }
public string? SupplierEmail { get; set; }
public string? SupplierPhone { get; set; }
@@ -13,7 +13,7 @@ public class CreatePriceDto
public string? SupplierCity { get; set; }
public int SupplierDeliveryDelay { get; set; }
public int ProductId { get; set; }
public int? ProductId { get; set; }
public string? ProductReferences { get; set; }
public string? ProductName { get; set; }
public decimal ProductDuration {get; set;}