immich/server/src/entities/asset-files.entity.ts
2025-03-28 10:40:09 -04:00

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;
}