fish.focus.uvms.incident.model.dto.KeyValuePair Maven / Gradle / Ivy
The newest version!
package fish.focus.uvms.incident.model.dto;
public class KeyValuePair {
String key;
Object value;
public KeyValuePair() {
}
public KeyValuePair(String key, Object value) {
this.key = key;
this.value = value;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public Object getValue() {
return value;
}
public void setValue(Object value) {
this.value = value;
}
}