Files
reallife-gamemode/ReallifeGamemode.Server/Util/IBankAccountOwner.cs

12 lines
243 B
C#

using ReallifeGamemode.Server.Models;
namespace ReallifeGamemode.Server.Util
{
public interface IBankAccountOwner
{
string Name { get; }
IBankAccount GetBankAccount(DatabaseContext databaseContext = null);
}
}