This commit is contained in:
liosha84
2025-08-22 18:57:24 +03:00
parent bc18200640
commit fac4e2d4df
41 changed files with 3401 additions and 7 deletions
@@ -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;
}
}