Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- namespace BPA.MES.Base.Application
- {
- /// <summary>
- /// 名 称 :MQTT消息基类
- /// 创 建 人 :yangxiao
- /// 创建时间 : 2023/7/21 10:24:24
- /// 描 述 :
- /// </summary>
- public interface IMessage
- {
- /// <summary>
- /// 消息ID
- /// </summary>
- public int MessageId { get; set; }
-
- /// <summary>
- /// 消息版本
- /// </summary>
- public Version MsgVersion { get; set; }
- }
- }
|