namespace OrpaonVision.SiteApp.Runtime.Contracts;
///
/// 海康相机设备信息。
///
public sealed class HikCameraDevice
{
///
/// 设备序列号。
///
public string SerialNumber { get; set; } = string.Empty;
///
/// 设备名称。
///
public string DeviceName { get; set; } = string.Empty;
///
/// IP地址。
///
public string IpAddress { get; set; } = string.Empty;
///
/// 子网掩码。
///
public string SubnetMask { get; set; } = string.Empty;
///
/// 默认网关。
///
public string DefaultGateway { get; set; } = string.Empty;
///
/// MAC地址。
///
public string MacAddress { get; set; } = string.Empty;
///
/// 固件版本。
///
public string FirmwareVersion { get; set; } = string.Empty;
///
/// 是否已连接。
///
public bool IsConnected { get; set; }
///
/// 连接时间。
///
public DateTime? ConnectedAt { get; set; }
}