2025-07-21 10:51:11 +00:00
|
|
|
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;
|
|
|
|
}
|
2025-07-25 07:58:53 +00:00
|
|
|
|
|
|
|
public ItemData ItemData => InventoryManager.Instance.GetItemDataByIdOrNull(Id);
|
2025-07-21 10:51:11 +00:00
|
|
|
}
|
|
|
|
}
|