Start work on Inventory System

This commit is contained in:
VegaZ
2018-10-25 21:54:53 +02:00
parent b0bafcfa00
commit 4b9225ed29
8 changed files with 153 additions and 0 deletions

View File

@@ -43,6 +43,9 @@ namespace reallife_gamemode.Model
public DbSet<Server.Entities.Ban> Bans { get; set; }
public DbSet<Server.Entities.Character> Characters { get; set; }
//Inventar
public DbSet<Server.Entities.UserItem> UserItems { get; set; }
//Faction
public DbSet<Server.Entities.Faction> Factions { get; set; }
public DbSet<Server.Entities.FactionBankAccount> FactionBankAccounts { get; set; }