Back to project page android-blog.
The source code is released under:
MIT License
If you think the Android project android-blog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.kevinmrohr.android_blog.model; //from w w w . j a va2 s . c o m import org.joda.time.DateTime; import java.io.Serializable; public class BlogPost implements Serializable { public DateTime date; public String title; public String content; public BlogPost() {} public BlogPost(String title, String content, DateTime date) { this.title = title; this.content = content; this.date = date; } }