You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
namespace EC.Onvif.Camera
|
|
{
|
|
public class Camera
|
|
{
|
|
public Camera()
|
|
{
|
|
}
|
|
|
|
public Camera(string cameraIp, int port, string userName, string passWord)
|
|
{
|
|
CameraCode = cameraIp;
|
|
CameraIp = cameraIp;
|
|
Port = port;
|
|
UserName = userName;
|
|
PassWord = passWord;
|
|
}
|
|
|
|
public string CameraCode { get; set; }
|
|
public string CameraIp { get; set; }
|
|
public int Port { get; set; }
|
|
public string UserName { get; set; }
|
|
public string PassWord { get; set; }
|
|
public int CameraType { get; set; }
|
|
public bool IsPtz { get; set; }
|
|
|
|
public string PTZUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否登录
|
|
/// </summary>
|
|
public bool logined { get; set; }
|
|
|
|
public bool isConnected { get; set; }
|
|
public bool dataLoaded { get; set; }
|
|
|
|
public object device { get; set; }
|
|
|
|
public object media { get; set; }
|
|
public object ptz { get; set; }
|
|
public object imaging { get; set; }
|
|
public object caps { get; set; }
|
|
public bool absolute_move { get; set; }
|
|
public bool relative_move { get; set; }
|
|
public bool continuous_move { get; set; }
|
|
public bool focus { get; set; }
|
|
}
|
|
}
|