summaryrefslogtreecommitdiff
path: root/DSACore/Models/Database/Inventory.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-09-29 19:08:20 +0200
committerTrueDoctor <d-kobert@web.de>2018-09-29 19:08:20 +0200
commit71f85e0d3539539a74e72eb86ecb13a0e637e88a (patch)
treed5f051a20a5849f0b43a711912330c6374b2ca68 /DSACore/Models/Database/Inventory.cs
parent0283e1ae9f66ac2ef53c081e369190af52077406 (diff)
adding database class structure
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>();
+ }
+}