Files
reallife-gamemode/ReallifeGamemode.Server/Util/IBankAccountOwner.cs
2019-07-17 19:52:55 +02:00

12 lines
229 B
C#

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