immich/server/src/entities/move.entity.ts

10 lines
165 B
TypeScript
Raw Normal View History

2024-09-27 10:28:42 -04:00
import { PathType } from 'src/enum';
export class MoveEntity {
id!: string;
entityId!: string;
pathType!: PathType;
oldPath!: string;
newPath!: string;
}