mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-08 08:23:06 +00:00
17 lines
439 B
C#
17 lines
439 B
C#
using Discord.WebSocket;
|
|
|
|
namespace BiblioTech.Options
|
|
{
|
|
public class CommandContext
|
|
{
|
|
public CommandContext(SocketSlashCommand command, IReadOnlyCollection<SocketSlashCommandDataOption> options)
|
|
{
|
|
Command = command;
|
|
Options = options;
|
|
}
|
|
|
|
public SocketSlashCommand Command { get; }
|
|
public IReadOnlyCollection<SocketSlashCommandDataOption> Options { get; }
|
|
}
|
|
}
|