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 . jav a 2 s .c om*/ import java.util.List; public class Settings { public List<String> courses; public Boolean autoRefresh; public int refreshInterval; //minutes public Boolean notify; public Settings(List<String> _courses,Boolean _autoRefresh,int _refreshInterval,Boolean _notify) { courses = _courses; autoRefresh = _autoRefresh; refreshInterval = _refreshInterval; notify = _notify; } public Settings(){ //create empty } }