summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Inventory.cs
blob: e6b47ec6a799ee81ca58f108b468248d3358e654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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<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>();
    }
}