using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Settings;
namespace Tango.MachineStudio.Stubs
{
public class StubsModuleSettings : SettingsBase
{
///
/// 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 StubsModuleSettings()
{
LastTabs = new List();
}
}
}