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