blob: 12ac21dfe5d5a1d1e8642a5185a406b9cab81d1f [file] [log] [blame]
package org.sample.java.helloworld;
import java.io.Serializable;
public class MyQuery implements Serializable {
String day;
public MyQuery(String day) {
this.day = day;
}
}