using System.Collections.Generic; namespace DSALib.Models.Database.Dsa { 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(); } }