using Discord.WebSocket; namespace BiblioTech.Options { public class CommandContext { public CommandContext(SocketSlashCommand command, IReadOnlyCollection options) { Command = command; Options = options; } public SocketSlashCommand Command { get; } public IReadOnlyCollection Options { get; } } }