OEM初版

This commit is contained in:
2025-10-10 17:54:53 +08:00
parent ccbe0f626f
commit 9036f967fc
16 changed files with 1736 additions and 237 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FATrace.HKNetLib.Common
{
/// <summary>
/// NVR Camera 模型
/// </summary>
public class NVRCamera
{
/// <summary>
/// 通道号
/// </summary>
public int ChNo { get; set; }
/// <summary>
/// 是否在线
/// </summary>
public byte IsOnline { get; set; }
/// <summary>
/// IP设备ID
/// </summary>
public ushort IPID { get; set; }
}
}