Files
reallife-gamemode/Server/Util/IBankAccountOwner.cs
2018-11-01 12:41:58 +01:00

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