You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
472 B

package edu.ahbvc.recruit.util.file;
public class FilePathModel {
private String path = "";
public FilePathModel() {
super();
}
public FilePathModel(String path) {
super();
this.path = path;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
@Override
public String toString() {
return "FilePath [path=" + path + "]";
}
}