mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-04-20 07:13:20 +02:00
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
import IJob from "./IJob";
|
|
|
|
export default interface IMoveFileOrFolderJob extends IJob {
|
|
fromLocation: string;
|
|
toLocation: string;
|
|
} |