Files
reallife-gamemode/ReallifeGamemode.Server/Entities/FactionBankAccount.cs
2019-05-13 20:06:19 +02:00

24 lines
626 B
C#

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; }
}
}