Files
PyroFetes-Sujet1/PyroFetes/DTO/Material/Response/GetMaterialDto.cs
2025-10-09 16:55:29 +02:00

10 lines
224 B
C#

namespace PyroFetes.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;}
}