2024-10-15 18:32:11 +08:00
|
|
|
|
2023-10-11 18:24:52 +08:00
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
|
|
|
|
|
class MineViewSafetyProblemState {
|
2024-08-01 18:54:32 +08:00
|
|
|
RxString firstProblemStr = '问题一'.tr.obs;
|
|
|
|
|
RxString secondProblemStr = '问题二'.tr.obs;
|
|
|
|
|
RxString thirdProblemStr = '问题三'.tr.obs;
|
2023-10-11 18:24:52 +08:00
|
|
|
|
2024-08-01 18:54:32 +08:00
|
|
|
RxString firstAnswerStr = ''.obs;
|
|
|
|
|
RxString secondAnswerStr = ''.obs;
|
|
|
|
|
RxString thirdAnswerStr = ''.obs;
|
2023-10-11 18:24:52 +08:00
|
|
|
|
2024-08-01 18:54:32 +08:00
|
|
|
RxInt firstQuestionId = 0.obs;
|
|
|
|
|
RxInt secondQuestionId = 0.obs;
|
|
|
|
|
RxInt thirdQuestionId = 0.obs;
|
2024-03-05 14:59:09 +08:00
|
|
|
|
2024-08-01 18:54:32 +08:00
|
|
|
RxInt firstAnswerId = 0.obs;
|
|
|
|
|
RxInt secondAnswerId = 0.obs;
|
|
|
|
|
RxInt thirdAnswerId = 0.obs;
|
2023-10-11 18:24:52 +08:00
|
|
|
}
|