blob: dad6d9f44062241cad58b76a83249efcfb6507ff [file] [log] [blame]
package org.sample.java.helloworld;
import java.io.Serializable;
public class MyPredictedResult implements Serializable {
Double temperature;
public MyPredictedResult(Double temperature) {
this.temperature = temperature;
}
}