mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 21:54:21 -04:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import { AssetEntity } from 'src/entities/asset.entity';
|
|
|
|
export class SmartSearchEntity {
|
|
asset?: AssetEntity;
|
|
assetId!: string;
|
|
embedding!: string;
|
|
}
|