Files
PyroFetes-Sujet1/PyroFetes/DTO/Material/Response/GetMaterialDto.cs

10 lines
218 B
C#

namespace API.DTO.Material.Response;
public class GetMaterialDto
{
public int Id { get; set; }
public string? Label { get; set; }
public int Quantity { get; set; }
public int WarehouseId {get; set;}
}