immich/mobile/lib/entities/device_asset.entity.dart

9 lines
159 B
Dart
Raw Permalink Normal View History

2026-02-02 15:06:40 +01:00
import 'package:isar/isar.dart';
class DeviceAsset {
DeviceAsset({required this.hash});
@Index(unique: false, type: IndexType.hash)
List<byte> hash;
}