mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:30:51 -04:00
11 lines
236 B
Dart
11 lines
236 B
Dart
import 'package:immich_mobile/domain/models/store.model.dart';
|
|
|
|
enum AppSettings<T> {
|
|
appTheme<int>(StoreKey.appTheme, 10);
|
|
|
|
const AppSettings(this.storeKey, this.defaultValue);
|
|
|
|
final StoreKey storeKey;
|
|
final T defaultValue;
|
|
}
|