mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
import { AssetEntity } from 'src/entities/asset.entity';
|
|
import { AssetFileType } from 'src/enum';
|
|
|
|
export class AssetFileEntity {
|
|
id!: string;
|
|
assetId!: string;
|
|
asset?: AssetEntity;
|
|
createdAt!: Date;
|
|
updatedAt!: Date;
|
|
updateId?: string;
|
|
type!: AssetFileType;
|
|
path!: string;
|
|
}
|