7 lines
181 B
C#
7 lines
181 B
C#
namespace GameCore.Inventory;
|
|
|
|
public struct Item(string itemId, int quantity)
|
|
{
|
|
public string ItemId { get; set; } = itemId;
|
|
public int Quantity { get; set; } = quantity;
|
|
} |