using System;
using Microsoft.ML.Data;
namespace ServerApp.Predictor
{
public class ModelOutput
[ColumnName("PredictedLabel")]
public String Prediction { get; set; }
public float[] Score { get; set; }
}