summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Inventory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DSACore/Models/Database/Inventory.cs')
-rw-r--r--DSACore/Models/Database/Inventory.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/DSACore/Models/Database/Inventory.cs b/DSACore/Models/Database/Inventory.cs
new file mode 100644
index 0000000..8e525c6
--- /dev/null
+++ b/DSACore/Models/Database/Inventory.cs
@@ -0,0 +1,15 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+
+namespace DSACore.Models.Database
+{
+ public class Inventory
+ {
+ private int Id { get; set; }
+ private List<string> Items { get; set; } = new List<string>();
+ private List<string> Food { get; set; } = new List<string>();
+ private List<Weapon> Weapons { get; set; } = new List<Weapon>();
+ }
+}