Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- using Newtonsoft.Json;
- namespace TelpoPush.Fence.Worker.Models.Enum
- {
- /// <summary>
- /// 消息数据头
- /// </summary>
- public class HeadersDto
- {
- [JsonProperty(PropertyName = "DataType")]
- public int? DataType { get; set; }
- [JsonProperty(PropertyName = "AlarmType")]
- public int? AlarmType { get; set; }
- [JsonProperty(PropertyName = "OperType")]
- public int? OperType { get; set; }
- }
- }
|