Files
immich/mobile/lib/domain/models/setting.model.dart
T
2026-05-19 00:40:10 +05:30

11 lines
265 B
Dart

import 'package:immich_mobile/domain/models/store.model.dart';
enum Setting<T> {
advancedTroubleshooting<bool>(StoreKey.advancedTroubleshooting, false);
const Setting(this.storeKey, this.defaultValue);
final StoreKey<T> storeKey;
final T defaultValue;
}