Files
PyroFetes-Sujet1/PyroFetes/DTO/Product/Request/CreateProductDto.cs
2025-10-09 15:16:08 +02:00

36 lines
1.0 KiB
C#

namespace API.DTO.Product.Request;
public class CreateProductDto
{
public int References { get; set; }
public string? Name { get; set; }
public decimal Duration { get; set; }
public decimal Caliber { get; set; }
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 ClassificationId { get; set;}
public int ProductCategoryId { get; set; }
// Liste des fournisseurs liés au produit
public List<ProductSupplierPriceDto>? Suppliers { get; set; }
// Liste des entrepôts liés au produit (ajoutée ici)
public List<CreateProductWarehouseDto>? Warehouses { get; set; }
}
public class ProductSupplierPriceDto
{
public int SupplierId { get; set; }
public decimal SellingPrice { get; set; }
}
public class CreateProductWarehouseDto
{
public int WarehouseId { get; set; }
public int Quantity { get; set; }
}