using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Settings;
using Tango.Transport.Adapters;
namespace Tango.Stubs
{
public class StubsSettings : SettingsBase
{
///
/// Gets or sets the selected port.
///
public String SelectedPort { get; set; }
///
/// Gets or sets the baud rate.
///
public UsbSerialBaudRates BaudRate { get; set; }
///
/// Gets or sets the last tabs.
///
public List LastTabs { get; set; }
///
/// Gets or sets a value indicating whether [automatic log response].
///
public bool AutoLogResponse { get; set; }
///
/// Initializes a new instance of the class.
///
public StubsSettings()
{
BaudRate = UsbSerialBaudRates.BR_9600;
LastTabs = new List();
}
}
}