namespace GameCore.Inventory; public struct Item(string itemId, int quantity) { public string ItemId { get; set; } = itemId; public int Quantity { get; set; } = quantity; }