10 lines
No EOL
272 B
Dart
10 lines
No EOL
272 B
Dart
import 'package:ohthatsa/pages/practice/PracticeType.dart';
|
|
import 'package:ohthatsa/util/Months.dart';
|
|
|
|
class PracticeAnswer {
|
|
final int question;
|
|
final int answer;
|
|
final PracticeType practiceType;
|
|
|
|
PracticeAnswer(this.question, this.answer, this.practiceType);
|
|
} |