forked from sanchezvem/PyroFetes
21 lines
566 B
C#
21 lines
566 B
C#
namespace API.DTO.Warehouse.Request;
|
|
|
|
public class UpdateWarehouseDto
|
|
{
|
|
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; }
|
|
|
|
public List<UpdateWarehouseProductDto>? Products { get; set; }
|
|
}
|
|
|
|
public class UpdateWarehouseProductDto
|
|
{
|
|
public int ProductId { get; set; }
|
|
public int Quantity { get; set; }
|
|
} |