forked from sanchezvem/PyroFetes
7 lines
173 B
C#
7 lines
173 B
C#
namespace PyroFetes.DTO.WareHouseProduct.Response;
|
|
|
|
public class GetTotalQuantityDto
|
|
{
|
|
public int ProductId { get; set; }
|
|
public int TotalQuantity { get; set; }
|
|
} |