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; // w w w. ja v a2s . co m import java.io.Serializable; public class Course implements Serializable{ public Course(String code, CourseInfo info, Announcements announcements) { super(); this.code = code; this.info = info; this.announcements = announcements; } public String code; public CourseInfo info; public Announcements announcements; //list of announcements }