12 lines
231 B
Dart
Raw Normal View History

2023-09-07 18:36:16 +08:00
import 'package:get/get.dart';
import '../../../lockMian/entity/lockInfoEntity.dart';
2023-09-07 18:36:16 +08:00
class DiagnoseState{
var getKeyInfosData = KeyInfos().obs;
2023-09-07 18:36:16 +08:00
DiagnoseState() {
getKeyInfosData.value = Get.arguments as KeyInfos;
}
2023-09-07 18:36:16 +08:00
}