Fix DbContext

This commit is contained in:
VegaZ
2018-09-23 23:13:05 +02:00
parent 6f9e91fb06
commit 2e0b32dfc9
4 changed files with 84 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
/**
* @overview Life of German Reallife - Entities UserVehicle (UserVehicle.cs)
* @overview Life of German Reallife - Entities UserBankAccount (UserBankAccount.cs)
* @author VegaZ
* @copyright (c) 2008 - 2018 Life of German
*/
@@ -23,10 +23,10 @@ namespace reallife_gamemode.Server.Entities
public int UserId { get; set; }
public User User { get; set; }
[StringLength(12)]
public string bic { get; set; }
public string Bic { get; set; }
[StringLength(32)]
public string Iban { get; set; }
public float Money { get; set; }
public float Balance { get; set; }
public bool Active { get; set; }
}
}