mirror of
https://github.com/immich-app/immich.git
synced 2025-12-05 12:45:19 -05:00
10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
import { PathType } from 'src/enum';
|
|
|
|
export class MoveEntity {
|
|
id!: string;
|
|
entityId!: string;
|
|
pathType!: PathType;
|
|
oldPath!: string;
|
|
newPath!: string;
|
|
}
|