blob: 09cc35d7d42ba71945e8958d53e1b07b10914eb7 [file] [log] [blame]
package org.sample.java.helloworld;
import java.io.Serializable;
import java.util.Map;
public class MyModel implements Serializable {
Map<String, Double> temperatures;
public MyModel(Map<String, Double> temperatures) {
this.temperatures = temperatures;
}
@Override
public String toString() {
return temperatures.toString();
}
}