package com.juick.server.api.activity.model; public class Article extends ActivityObject { private String content; private String attributedTo; public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getAttributedTo() { return attributedTo; } public void setAttributedTo(String attributedTo) { this.attributedTo = attributedTo; } }