ohthatsa_old/lib/pages/practice/month/MonthPracticeAnswer.dart
2020-10-18 14:38:59 +02:00

8 lines
No EOL
164 B
Dart

import 'package:ohthatsa/util/Months.dart';
class MonthPracticeAnswer {
final Month month;
final int answer;
MonthPracticeAnswer(this.month, this.answer);
}