zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Models/Ordering/OrderStockItemModel.cs

10 lines
242 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
namespace ZeroFramework.DeviceCenter.Application.Models.Ordering
{
public class OrderStockItemModel(int productId, int units)
{
public int ProductId { get; } = productId;
public int Units { get; } = units;
}
}