mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
10 lines
346 B
C#
10 lines
346 B
C#
namespace NadekoBot.Modules.Gambling.Bank;
|
|
|
|
public interface IBankService
|
|
{
|
|
Task<bool> DepositAsync(ulong userId, long amount);
|
|
Task<bool> WithdrawAsync(ulong userId, long amount);
|
|
Task<long> GetBalanceAsync(ulong userId);
|
|
Task<bool> AwardAsync(ulong userId, long amount);
|
|
Task<bool> TakeAsync(ulong userId, long amount);
|
|
} |