12 lines
196 B
Dart
12 lines
196 B
Dart
class PresetCommand {
|
|
PresetCommand({
|
|
required this.id,
|
|
required this.label,
|
|
required this.commandText,
|
|
});
|
|
|
|
final String id;
|
|
final String label;
|
|
final String commandText;
|
|
}
|