package chat.user; public class NotifyContent { private String title; private NotifyContentDetail content; public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public NotifyContentDetail getContent() { return content; } public void setContent(NotifyContentDetail content) { this.content = content; } }