add DocumentDTO class

This commit is contained in:
Mika Bomm 2024-09-01 22:39:44 +02:00
parent e3defefef3
commit 717c181b74

View file

@ -1,6 +1,41 @@
package com.mixel.docusphere.dto;
// FIXME: Implement document DTO
public class DocumentDTO {
private String name;
private String description;
private String s3Path;
private String userId;
// Getters and Setters
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getS3Path() {
return s3Path;
}
public void setS3Path(String s3Path) {
this.s3Path = s3Path;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}