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

25 lines
861 B
C#

using PyroFetes.Models;
namespace PyroFetes.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; }
public List<Brand>? Brands { get; set; }
public List<ProductEffect>? Effects { get; set; }
public List<ProductColor>? Colors {get; set;}
public List<Price>? Prices {get; set;}
public List<WarehouseProduct>? WarehouseProducts {get; set; }
}