|
|
@@ -0,0 +1,29 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace CamTool
|
|
|
+{
|
|
|
+ class AcsDevice
|
|
|
+ {
|
|
|
+ public string ip { get; set; }
|
|
|
+ public string username { get; set; }
|
|
|
+ public string password { get; set; }
|
|
|
+ public string direction { get; set; }
|
|
|
+ public int userId { get; set; }
|
|
|
+
|
|
|
+ public AcsDevice()
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ public AcsDevice(string ip, string username, string password, string direction)
|
|
|
+ {
|
|
|
+ this.ip = ip;
|
|
|
+ this.username = username;
|
|
|
+ this.password = password;
|
|
|
+ this.direction = direction;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|