-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathHikVisionChannel.cs
More file actions
26 lines (22 loc) · 899 Bytes
/
HikVisionChannel.cs
File metadata and controls
26 lines (22 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/
namespace BootstrapBlazor.Components;
/// <summary>
/// 海康威视网络摄像机通道信息
/// </summary>
public class HikVisionChannel
{
/// <summary>
/// 获得/设置 模拟通道信息集合
/// </summary>
public List<HikVisionAnalogChannelInfo> AnalogChannels { get; set; } = [];
/// <summary>
/// 获得/设置 数字通道信息集合
/// </summary>
public List<HikVisionDigitalChannelInfo> DigitalChannels { get; set; } = [];
/// <summary>
/// 获得/设置 数字通道信息集合
/// </summary>
public List<HikVisionZeroChannelInfo> ZeroChannels { get; set; } = [];
}