blob: 54d7ade8e06e9dc589b68d4dc6627414d7d7848f [file] [log] [blame]
package org.example.recommendation;
import java.io.Serializable;
import java.util.List;
public class PredictedResult implements Serializable{
private final List<ItemScore> itemScores;
public PredictedResult(List<ItemScore> itemScores) {
this.itemScores = itemScores;
}
public List<ItemScore> getItemScores() {
return itemScores;
}
@Override
public String toString() {
return "PredictedResult{" +
"itemScores=" + itemScores +
'}';
}
}