cs-codex-dist-tests/Tools/BiblioTech/Options/CommandContext.cs

17 lines
439 B
C#
Raw Normal View History

2023-10-24 13:25:45 +00:00
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; }
}
}