using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace DSACore.Models.Database { public class Inventory { public int Id { get; set; } public Dictionary Items { get; set; } = new Dictionary(); public Dictionary Food { get; set; } = new Dictionary(); public List Weapons { get; set; } = new List(); } }