21 lines
524 B
Dart
Executable File
21 lines
524 B
Dart
Executable File
|
|
import 'package:get/get.dart';
|
|
|
|
class MineViewSafetyProblemState {
|
|
RxString firstProblemStr = '问题一'.tr.obs;
|
|
RxString secondProblemStr = '问题二'.tr.obs;
|
|
RxString thirdProblemStr = '问题三'.tr.obs;
|
|
|
|
RxString firstAnswerStr = ''.obs;
|
|
RxString secondAnswerStr = ''.obs;
|
|
RxString thirdAnswerStr = ''.obs;
|
|
|
|
RxInt firstQuestionId = 0.obs;
|
|
RxInt secondQuestionId = 0.obs;
|
|
RxInt thirdQuestionId = 0.obs;
|
|
|
|
RxInt firstAnswerId = 0.obs;
|
|
RxInt secondAnswerId = 0.obs;
|
|
RxInt thirdAnswerId = 0.obs;
|
|
}
|