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

namespace DSACore.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>();
    }
}