blob: 5dc5c62dc676d79a990688aa8f72fbe23cce1259 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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>();
}
}
|