using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace HeuristicLab.Services.Optimization.Web.Models { public class SeriesEntry { public string Label { get; set; } public double[] Values { get; set; } } public class PlotableData { private IList series = new List(); public bool ShowMarker { get; set; } public IList Series { get { return series; } set { series = value; } } } public class RowNameContainer { private IList rowNames = new List(); public IList RowNames { get { return rowNames; } set { rowNames = value; } } } public class DatatableContainer { public string[] Datatables { get; set; } } }