using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FATrace.HKNetLib.Wrapper
{
///
/// 海康DVR登录信息
///
public class CameraLoginInfo
{
///
/// 摄像头的IP地址
///
public string IP { get; set; }
///
/// 登录端口号
///
public ushort Port { get; set; } = 8000;
///
/// 登录用户名
///
public string UserName { get; set; }
///
/// 登录密码
///
public string Password { get; set; }
///
/// 默认通道
///
public int ChannelNo { get; set; } = 1;
}
}