内容/Getter/Setter

This commit is contained in:
r-ca 2023-12-18 01:24:03 +09:00
parent 41c90f5467
commit cb187fc7ed
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,4 +1,27 @@
package one.nem.lacerta.feature.debug.common.model;
public class DebugMenuDocumentListItem {
private String title;
private String description;
private String updatedAt;
public DebugMenuDocumentListItem(String title, String description, String updatedAt) {
this.title = title;
this.description = description;
this.updatedAt = updatedAt;
}
public String getTitle() {
return title;
}
public String getDescription() {
return description;
}
public String getUpdatedAt() {
return updatedAt;
}
}