aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Services/IExternalBridgeClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Services/IExternalBridgeClient.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Services/IExternalBridgeClient.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Services/IExternalBridgeClient.cs b/Software/Visual_Studio/Tango.Integration/Services/IExternalBridgeClient.cs
new file mode 100644
index 000000000..c5cb1d378
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Integration/Services/IExternalBridgeClient.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net.Sockets;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Transport;
+using Tango.Transport.Transporters;
+
+namespace Tango.Integration.Services
+{
+ public interface IExternalBridgeClient : ITransporter
+ {
+ String SerialNumber { get; }
+
+ String Organization { get; }
+
+ String IPAddress { get; set; }
+
+ Task<bool> Authenticate(String password);
+ }
+}