15 lines
366 B
C#
15 lines
366 B
C#
using ReallifeGamemode.Server.Util;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Entities
|
|
{
|
|
public class GroupBankAccount : BankAccount, IBankAccount
|
|
{
|
|
public Group Group { get; set; }
|
|
}
|
|
}
|