summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Models/Database/Dsa/Inventory.cs
blob: f3f5d7af6ec1216904d80e54ef69b47d330c4e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections.Generic;

namespace DSALib.Models.Database.Dsa
{
    public class Inventory
    {
        public int Id { get; set; }
        public Dictionary<string, bool> Items { get; set; } = new Dictionary<string, bool>();
        public Dictionary<string, bool> Food { get; set; } = new Dictionary<string, bool>();
        public List<Weapon> Weapons { get; set; } = new List<Weapon>();
    }
}