fix
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.jambotronGroup.jambotron.fileBrowserTree;
|
||||
|
||||
public class CreateFolderRequest {
|
||||
private String path;
|
||||
private String name;
|
||||
|
||||
// Constructors
|
||||
public CreateFolderRequest() {}
|
||||
|
||||
public CreateFolderRequest(String path, String name) {
|
||||
this.path = path;
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
// Getters and Setters
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
|
||||
public void setPath(String path) {
|
||||
this.path = path;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user