ohthatsa_old/lib/pages/practice/PracticeSetup.dart
2020-11-03 20:03:49 +01: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);
}