mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
f057fe045e
* refactor(mobile): entities * store entity * refactor: models * remove domain * save all * bad refactor
12 lines
254 B
Dart
12 lines
254 B
Dart
import 'package:immich_mobile/utils/hash.dart';
|
|
import 'package:isar/isar.dart';
|
|
|
|
part 'duplicated_asset.entity.g.dart';
|
|
|
|
@Collection(inheritance: false)
|
|
class DuplicatedAsset {
|
|
String id;
|
|
DuplicatedAsset(this.id);
|
|
Id get isarId => fastHash(id);
|
|
}
|