Files
immich/mobile/lib/infrastructure/entities/isar_store.entity.dart
2025-06-27 15:40:48 -05:00

14 lines
301 B
Dart

import 'package:isar/isar.dart';
part 'isar_store.entity.g.dart';
/// Internal class for `Store`, do not use elsewhere.
@Collection(inheritance: false)
class StoreValue {
final Id id;
final int? intValue;
final String? strValue;
const StoreValue(this.id, {this.intValue, this.strValue});
}