import 'package:immich_mobile/domain/models/store.model.dart'; enum Setting { tilesPerRow(StoreKey.tilesPerRow, 4), groupAssetsBy(StoreKey.groupAssetsBy, 0), showStorageIndicator(StoreKey.storageIndicator, true); const Setting(this.storeKey, this.defaultValue); final StoreKey storeKey; final T defaultValue; }