blob: b3dd8a9f7db95a8ac366e40d5425b4d8df185856 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Settings
{
public class Integration
{
public int ExternalBridgeServicePort { get; set; }
public int ExternalBridgeServiceDiscoveryPort { get; set; }
public String EmbeddedDeviceName { get; set; }
public Integration()
{
ExternalBridgeServicePort = 1984;
ExternalBridgeServiceDiscoveryPort = 8888;
EmbeddedDeviceName = "Tango USB Serial Port";
}
}
}
|