summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/DSA/Inventory.cs
blob: 69c7b0894d1db8b957b0a2343b988a401bf7c355 (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>();
    }
}