diff --git a/feature/debug/src/main/java/one/nem/lacerta/feature/debug/common/model/DebugMenuDocumentListItem.java b/feature/debug/src/main/java/one/nem/lacerta/feature/debug/common/model/DebugMenuDocumentListItem.java index ee76a168..d03d0884 100644 --- a/feature/debug/src/main/java/one/nem/lacerta/feature/debug/common/model/DebugMenuDocumentListItem.java +++ b/feature/debug/src/main/java/one/nem/lacerta/feature/debug/common/model/DebugMenuDocumentListItem.java @@ -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; + } + }