mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
import { AssetEntity } from 'src/entities/asset.entity';
|
|
|
|
export class SmartSearchEntity {
|
|
asset?: AssetEntity;
|
|
assetId!: string;
|
|
embedding!: string;
|
|
}
|