mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
13 lines
404 B
C#
13 lines
404 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Gambling;
|
|
|
|
public class CashInteraction : NInteraction
|
|
{
|
|
protected override NadekoInteractionData Data
|
|
=> new NadekoInteractionData(new Emoji("🏦"), "cash:bank_show_balance");
|
|
|
|
public CashInteraction(DiscordSocketClient client, ulong userId, Func<SocketMessageComponent, Task> action)
|
|
: base(client, userId, action)
|
|
{
|
|
}
|
|
} |