12 lines
229 B
C#
12 lines
229 B
C#
using ReallifeGamemode.Server.Models;
|
|
|
|
namespace ReallifeGamemode.Server.Util
|
|
{
|
|
public interface IBankAccountOwner
|
|
{
|
|
string Name { get; }
|
|
|
|
IBankAccount GetBankAccount(DatabaseContext databaseContext = null);
|
|
}
|
|
}
|