forked from sanchezvem/PyroFetes
13 lines
334 B
C#
13 lines
334 B
C#
namespace API.DTO.Warehouse.Request;
|
|
|
|
public class CreateWarehouseDto
|
|
{
|
|
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; }
|
|
}
|