Tunny.Core/Settings/PlotSettings.cs
namespace Tunny.Core.Settings
{
public class PlotSettings
{
public string PlotTypeName { get; set; }
public string TargetStudyName { get; set; }
public string[] TargetObjectiveName { get; set; }
public int[] TargetObjectiveIndex { get; set; }
public string[] TargetVariableName { get; set; }
public int[] TargetVariableIndex { get; set; }
public int ClusterCount { get; set; }
public bool IncludeDominatedTrials { get; set; }
public double[] ReferencePoint { get; set; }
public string ImportanceEvaluator { get; set; }
}
}