1
0
mirror of https://github.com/C9Glax/tranga-website.git synced 2025-04-29 03:32:30 +02:00
2025-03-17 20:20:45 +01:00

6 lines
140 B
TypeScript

import IJob from "./IJob";
export default interface IMoveFileOrFolderJob extends IJob {
fromLocation: string;
toLocation: string;
}