using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Settings.MachineStudioSettings { /// /// Represents the machine studio stubs module settings. /// public class StubsModule { /// /// Gets or sets the last selected port. /// public String SelectedPort { get; set; } /// /// Gets or sets the last tabs. /// public List LastTabs { get; set; } /// /// Initializes a new instance of the class. /// public StubsModule() { LastTabs = new List(); } } }