nyxx/nyxx.interactions/lib/src/models/CommandInteractionData.dart
2021-03-29 21:17:34 +02:00

12 lines
221 B
Dart

part of nyxx_interactions;
class CommandInteractionData {
final Snowflake id;
final String name;
final List<CommandInteractionOption>? options;
CommandInteractionData._new(this.id, this.name, this.options);
}