All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dounine.clouddisk360.parser.deserializer.file.move.FileMoveParameter Maven / Gradle / Ivy

package com.dounine.clouddisk360.parser.deserializer.file.move;

import java.util.ArrayList;
import java.util.List;

import com.dounine.clouddisk360.parser.deserializer.BaseParameter;

public class FileMoveParameter extends BaseParameter {

	private List moveFiles = new ArrayList<>(0);
	/**
	 * 移动到新路径
	 */
	private String newPath;

	public List getMoveFiles() {
		return moveFiles;
	}

	public void setMoveFiles(List moveFiles) {
		this.moveFiles = moveFiles;
	}

	public String getNewPath() {
		return newPath;
	}

	public void setNewPath(String newPath) {
		this.newPath = newPath;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy