You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.3 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.CoreCommunications.WhoIsThere
* C0437D56-30D2-4BFF-AA17-A7D9D7D1D118
*
* WenJY
*
* 2025-10-16 11:11:52
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
using Sln.Iot.Model.api.CoreCommunications.WhoIsThere.@enum;
namespace Sln.Iot.Model.api.CoreCommunications.WhoIsThere
{
/// <summary>
/// 5.4.1.5 - 广播查询请求
/// 上端系统的群发请求,通过广播方式发送
/// </summary>
public class WhoIsThereRequest
{
/// <summary>
/// 要查询的 CFX 能力类型
/// </summary>
public SupportedTopicQueryType SupportedTopicQueryType { get; set; }
/// <summary>
/// 设备支援的 CFX 能力表
/// </summary>
public List<SupportedTopic> SupportedTopics { get; set; }
}
}