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

9 lines
165 B
TypeScript

import { PathType } from 'src/enum';
export class MoveEntity {
id!: string;
entityId!: string;
pathType!: PathType;
oldPath!: string;
newPath!: string;
}