using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; using Tango.Settings; namespace Tango.MachineStudio.Developer { public class DeveloperModuleSettings : SettingsBase { public class ParameterIndex { public String Name { get; set; } public int Index { get; set; } } public String LastSelectedMachineGuid { get; set; } public String LastSelectedJobGuid { get; set; } public List ProcessParametersIndices { get; set; } public DeveloperModuleSettings() { ProcessParametersIndices = new List(); } } }