
com.uchicom.repty.dto.Draw Maven / Gradle / Ivy
package com.uchicom.repty.dto;
import java.util.List;
public class Draw {
String type;
String key;
boolean repeated;
List values;
@Override
public String toString() {
return "Draw [type=" + type + ", key=" + key + ", values=" + values + "]";
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public boolean isRepeated() {
return repeated;
}
public void setRepeated(boolean repeated) {
this.repeated = repeated;
}
public List getValues() {
return values;
}
public void setValues(List values) {
this.values = values;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy