mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
9 lines
197 B
C#
9 lines
197 B
C#
using NadekoBot.Services.Currency;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public interface ITxTracker
|
|
{
|
|
Task TrackAdd(long amount, TxData? txData);
|
|
Task TrackRemove(long amount, TxData? txData);
|
|
} |