aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Settings/OLD/Integration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Settings/OLD/Integration.cs')
-rw-r--r--Software/Visual_Studio/Tango.Settings/OLD/Integration.cs45
1 files changed, 45 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Settings/OLD/Integration.cs b/Software/Visual_Studio/Tango.Settings/OLD/Integration.cs
new file mode 100644
index 000000000..d670cad8e
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Settings/OLD/Integration.cs
@@ -0,0 +1,45 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.Settings
+{
+ /// <summary>
+ /// Represents the global integration settings.
+ /// </summary>
+ public class Integration
+ {
+ /// <summary>
+ /// Gets or sets the external bridge service port.
+ /// </summary>
+ public int ExternalBridgeServicePort { get; set; }
+
+ /// <summary>
+ /// Gets or sets the external bridge service discovery port.
+ /// </summary>
+ public int ExternalBridgeServiceDiscoveryPort { get; set; }
+
+ /// <summary>
+ /// Gets or sets the name of the embedded device.
+ /// </summary>
+ public String EmbeddedDeviceName { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether filter the detected USB machines via <see cref="EmbeddedDeviceName"/>.
+ /// </summary>
+ public bool FilterExternalBridgeUsbMachines { get; set; }
+
+ /// <summary>
+ /// Initializes a new instance of the <see cref="Integration"/> class.
+ /// </summary>
+ public Integration()
+ {
+ ExternalBridgeServicePort = 1984;
+ ExternalBridgeServiceDiscoveryPort = 8888;
+ EmbeddedDeviceName = "Tango USB Serial Port";
+ FilterExternalBridgeUsbMachines = true;
+ }
+ }
+}