2024-04-24 16:04:07 +08:00
|
|
|
import 'package:get/get.dart';
|
2024-01-23 17:36:02 +08:00
|
|
|
|
2024-04-24 16:04:07 +08:00
|
|
|
class LockEscalationState {
|
2024-05-31 14:28:52 +08:00
|
|
|
RxBool otaUpdateIng = false.obs;
|
|
|
|
|
RxDouble otaProgress = 0.00.obs;
|
|
|
|
|
RxBool isShowUpDataBtn = false.obs;
|
2024-06-12 18:13:13 +08:00
|
|
|
RxString showVersion = ''.obs;
|
|
|
|
|
RxString showNewVersion = ''.obs;
|
|
|
|
|
RxBool loading = true.obs;
|
2024-01-23 17:36:02 +08:00
|
|
|
}
|