15 lines
304 B
C#
15 lines
304 B
C#
using reallife_gamemode.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace reallife_gamemode.Server.Util
|
|
{
|
|
public interface IBankAccountOwner
|
|
{
|
|
string Name { get; }
|
|
|
|
IBankAccount GetBankAccount(DatabaseContext databaseContext = null);
|
|
}
|
|
}
|