Test NoobVehicles

This commit is contained in:
Mac_Slash
2020-04-21 14:20:53 +02:00
parent a2fb8c531e
commit e98150e4c4
6 changed files with 63 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
namespace ReallifeGamemode.Database.Entities
{
public partial class NoobVehicle : ServerVehicle
{
//public int SchoolId { get; set; }
}
}

View File

@@ -136,6 +136,9 @@ namespace ReallifeGamemode.Database.Models
//Driving/Bike/Flight School
public DbSet<Entities.SchoolVehicle> SchoolVehicles { get; set; }
//Noob Vehicles
public DbSet<Entities.NoobVehicle> NoobVehicles { get; set; }
//Gangwar
public DbSet<Entities.Turfs> Turfs { get; set; }