mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
11 lines
318 B
Dart
11 lines
318 B
Dart
import 'package:PiliPlus/models/common/later_view_type.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
class LaterBaseController extends GetxController {
|
|
RxBool enableMultiSelect = false.obs;
|
|
RxInt checkedCount = 0.obs;
|
|
|
|
RxMap<LaterViewType, int> counts =
|
|
{for (final item in LaterViewType.values) item: -1}.obs;
|
|
}
|