Back to project page UTHPortal-Android-Gradle.
The source code is released under:
MIT License
If you think the Android project UTHPortal-Android-Gradle 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.uth.uthportal.collections; //from w w w . j ava2 s . co m import java.util.Date; import java.util.List; public class Announcements { public String link; public Date updateDate; public List<AnnItem> items; public Announcements(String link,Date updateDate, List<AnnItem> items){ this.link = link; this.items = items; this.updateDate = updateDate; } }