Back to project page RabbitEars.
The source code is released under:
MIT License
If you think the Android project RabbitEars 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 com.fbs.rabbitears.contracts.feed; /* ww w .j a v a 2s . c om*/ import com.google.gson.annotations.SerializedName; import java.util.Date; import java.util.List; /** * Entry Serialization Contract */ public class Entry { public String title; public Content content; public String id; public Date published; public Date updated; @SerializedName("link") public List<Link> links; public boolean hasContent() { return content != null; } }