mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
11 lines
727 B
C#
11 lines
727 B
C#
namespace NadekoBot.Services;
|
|
|
|
public interface ICurrencyService
|
|
{
|
|
Task AddAsync(ulong userId, string reason, long amount, bool gamble = false);
|
|
Task AddAsync(IUser user, string reason, long amount, bool sendMessage = false, bool gamble = false);
|
|
Task AddBulkAsync(IEnumerable<ulong> userIds, IEnumerable<string> reasons, IEnumerable<long> amounts, bool gamble = false);
|
|
Task<bool> RemoveAsync(ulong userId, string reason, long amount, bool gamble = false);
|
|
Task<bool> RemoveAsync(IUser userId, string reason, long amount, bool sendMessage = false, bool gamble = false);
|
|
Task RemoveBulkAsync(IEnumerable<ulong> userIds, IEnumerable<string> reasons, IEnumerable<long> amounts, bool gamble = false);
|
|
} |