You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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; }
- }
- }
|