Add UserBankAccount

This commit is contained in:
VegaZ
2018-09-23 21:01:59 +02:00
parent f231c7214b
commit a74d080d02
4 changed files with 38 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ using System.Text;
/**
* @overview Life of German Reallife - Entities UserVehicle (UserVehicle.cs)
* @author VegaZ, hydrant
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
@@ -21,6 +21,8 @@ namespace reallife_gamemode.Server.Entities
public int Id { get; set; }
[ForeignKey("User")]
public int UserId { get; set; }
public User User { get; set; }
public VehicleHash Model { get; set; }
public float PositionX { get; set; }
public float PositionY { get; set; }