mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-04-20 15:23:21 +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;
|
|
} |