mirror of
https://github.com/immich-app/immich.git
synced 2026-05-21 15:16:31 -04:00
11 lines
265 B
Dart
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;
|
|
}
|