ohthatsa/lib/pages/practice/PracticeSetup.dart
2025-06-21 17:08:45 +02:00

9 lines
No EOL
231 B
Dart

import 'package:ohthatsa/pages/practice/PracticeType.dart';
class PracticeSetup {
final int count;
final bool showCorrect;
final PracticeType practiceType;
PracticeSetup(this.count, this.showCorrect, this.practiceType);
}