Files
MetaCourse/pyrofetes/pyrofetes-backend/PyroFetes/DTO/Product/Response/GetProductDto.cs
T
2026-05-05 10:53:52 +02:00

16 lines
512 B
C#

namespace PyroFetes.DTO.Product.Response;
public class GetProductDto
{
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; }
}