16 lines
382 B
C#
16 lines
382 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;
|
|
}
|
|
|
|
public ItemData ItemData => InventoryManager.Instance.GetItemDataByIdOrNull(Id);
|
|
}
|
|
} |