14 lines
284 B
C#
14 lines
284 B
C#
![]() |
namespace DDD
|
||
|
{
|
||
|
public class InventoryItemData : IId
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public int Quantity { get; set; }
|
||
|
|
||
|
public InventoryItemData(string id, int quantity)
|
||
|
{
|
||
|
Id = id;
|
||
|
Quantity = quantity;
|
||
|
}
|
||
|
}
|
||
|
}
|