mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 09:13:15 +03:00
14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
|
|
import { AssetEntity } from '@app/database/entities/asset.entity';
|
||
|
|
|
||
|
|
export interface IAssetUploadedJob {
|
||
|
|
/**
|
||
|
|
* The Asset entity that was saved in the database
|
||
|
|
*/
|
||
|
|
asset: AssetEntity;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Original file name
|
||
|
|
*/
|
||
|
|
fileName: string;
|
||
|
|
}
|