From 632781d1adf54287ecfe7cbcbc17074e14a769b2 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Sat, 29 Sep 2018 23:59:42 +0200 Subject: added database methods --- DSACore/Models/Database/Inventory.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'DSACore/Models/Database/Inventory.cs') diff --git a/DSACore/Models/Database/Inventory.cs b/DSACore/Models/Database/Inventory.cs index 8e525c6..e6b47ec 100644 --- a/DSACore/Models/Database/Inventory.cs +++ b/DSACore/Models/Database/Inventory.cs @@ -7,9 +7,9 @@ namespace DSACore.Models.Database { public class Inventory { - private int Id { get; set; } - private List Items { get; set; } = new List(); - private List Food { get; set; } = new List(); - private List Weapons { get; set; } = new List(); + public int Id { get; set; } + public Dictionary Items { get; set; } = new Dictionary(); + public Dictionary Food { get; set; } = new Dictionary(); + public List Weapons { get; set; } = new List(); } } -- cgit v1.2.3-54-g00ecf