CAMERA V1

This commit is contained in:
2025-09-11 20:29:17 +08:00
parent c7165f0dc5
commit ccbe0f626f
135 changed files with 26211 additions and 182 deletions

View File

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