Files
PyroFetes-Sujet1/PyroFetes/DTO/Product/Request/CreateProductDto.cs
2025-11-20 16:45:44 +01:00

15 lines
482 B
C#

namespace PyroFetes.DTO.Product.Request;
public class CreateProductDto
{
public string? References { get; set; }
public string? Name { get; set; }
public decimal Duration {get; set;}
public int Caliber { get; set; }
public string? ApprovalNumber { get; set; }
public decimal Weight { get; set; }
public decimal Nec { get; set; }
public string? Image { get; set; }
public string? Link { get; set; }
public int MinimalQuantity { get; set; }
}