mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
12 lines
253 B
Dart
12 lines
253 B
Dart
|
|
import 'package:immich_mobile/utils/hash.dart';
|
||
|
|
import 'package:isar/isar.dart';
|
||
|
|
|
||
|
|
part 'duplicated_asset.model.g.dart';
|
||
|
|
|
||
|
|
@Collection(inheritance: false)
|
||
|
|
class DuplicatedAsset {
|
||
|
|
String id;
|
||
|
|
DuplicatedAsset(this.id);
|
||
|
|
Id get isarId => fastHash(id);
|
||
|
|
}
|