using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Settings
{
///
/// Represents the global integration settings.
///
public class Integration
{
///
/// Gets or sets the external bridge service port.
///
public int ExternalBridgeServicePort { get; set; }
///
/// Gets or sets the external bridge service discovery port.
///
public int ExternalBridgeServiceDiscoveryPort { get; set; }
///
/// Gets or sets the name of the embedded device.
///
public String EmbeddedDeviceName { get; set; }
///
/// Gets or sets a value indicating whether filter the detected USB machines via .
///
public bool FilterExternalBridgeUsbMachines { get; set; }
///
/// Initializes a new instance of the class.
///
public Integration()
{
ExternalBridgeServicePort = 1984;
ExternalBridgeServiceDiscoveryPort = 8888;
EmbeddedDeviceName = "Tango USB Serial Port";
FilterExternalBridgeUsbMachines = true;
}
}
}