using GTANetworkAPI; using ReallifeGamemode.Server.Util; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Text; /** * @overview Life of German Reallife - Entities FactionBankAccount (FactionBankAccount.cs) * @author VegaZ * @copyright (c) 2008 - 2018 Life of German */ namespace ReallifeGamemode.Server.Entities { public class FactionBankAccount : BankAccount, IBankAccount { [ForeignKey("Faction")] public int FactionId { get; set; } public Faction Faction { get; set; } } }