mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
13 lines
295 B
Dart
13 lines
295 B
Dart
|
|
import 'package:isar/isar.dart';
|
||
|
|
|
||
|
|
part 'store.entity.g.dart';
|
||
|
|
|
||
|
|
/// Internal class for `Store`, do not use elsewhere.
|
||
|
|
@Collection(inheritance: false)
|
||
|
|
class StoreValue {
|
||
|
|
const StoreValue(this.id, {this.intValue, this.strValue});
|
||
|
|
final Id id;
|
||
|
|
final int? intValue;
|
||
|
|
final String? strValue;
|
||
|
|
}
|