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

13 lines
362 B
C#

namespace API.DTO.Warehouse.Response;
public class GetWarehouseDto
{
public int Id {get; set;}
public string Name {get; set;}
public int MaxWeight {get; set;}
public int Current {get; set;}
public int MinWeight {get; set;}
public string Adress { get; set; }
public int ZipCode { get; set; }
public string City { get; set; }
}