mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
内容/Getter/Setter
This commit is contained in:
parent
41c90f5467
commit
cb187fc7ed
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user