using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Settings { /// /// Represents the stubs UI utility settings. /// public class StubsUI { /// /// Gets or sets the selected port. /// public String SelectedPort { get; set; } /// /// Gets or sets the baud rate. /// public int 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 StubsUI() { BaudRate = 9600; LastTabs = new List(); } } }