2022-12-30 08:22:06 -05:00
|
|
|
import { AssetEntity } from '@app/database';
|
2022-07-02 21:06:36 -05:00
|
|
|
|
|
|
|
|
export interface IAssetUploadedJob {
|
|
|
|
|
/**
|
|
|
|
|
* The Asset entity that was saved in the database
|
|
|
|
|
*/
|
|
|
|
|
asset: AssetEntity;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Original file name
|
|
|
|
|
*/
|
|
|
|
|
fileName: string;
|
|
|
|
|
}
|