mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 17:23:16 +03:00
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
|
|
import { AssetEntity } from '@app/database/entities/asset.entity';
|
||
|
|
|
||
|
|
export interface IMachineLearningJob {
|
||
|
|
/**
|
||
|
|
* The Asset entity that was saved in the database
|
||
|
|
*/
|
||
|
|
asset: AssetEntity;
|
||
|
|
}
|