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 ww .jav a 2 s . c o m*/ import java.util.Date; public class DayMenu { public String name; public Date date; public Dish dinner; public Dish lunch; public DayMenu(String name,Date date,Dish dinner,Dish lunch) { this.name = name; this.date = date; this.dinner = dinner; this.lunch = lunch; } }