diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/StubsModule.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/StubsModule.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/StubsModule.cs b/Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/StubsModule.cs new file mode 100644 index 000000000..b9263237a --- /dev/null +++ b/Software/Visual_Studio/Tango.Settings/OLD/MachineStudioSettings/StubsModule.cs @@ -0,0 +1,32 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.Settings.MachineStudioSettings +{ + /// <summary> + /// Represents the machine studio stubs module settings. + /// </summary> + public class StubsModule + { + /// <summary> + /// Gets or sets the last selected port. + /// </summary> + public String SelectedPort { get; set; } + + /// <summary> + /// Gets or sets the last tabs. + /// </summary> + public List<String> LastTabs { get; set; } + + /// <summary> + /// Initializes a new instance of the <see cref="StubsModule"/> class. + /// </summary> + public StubsModule() + { + LastTabs = new List<string>(); + } + } +} |
