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

12 lines
245 B
C#

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