Files
pyrofetes-backend/PyroFetes/DTO/Product/Request/UpdateProductDto.cs
T
2026-05-24 17:24:44 +01:00

16 lines
515 B
C#

namespace PyroFetes.DTO.Product.Request;
public class UpdateProductDto
{
public int Id { get; set; }
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; }
}