电子围栏推送服务
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
457B

  1. using Newtonsoft.Json;
  2. namespace TelpoPush.Fence.Worker.Models.Enum
  3. {
  4. /// <summary>
  5. /// 消息数据头
  6. /// </summary>
  7. public class HeadersDto
  8. {
  9. [JsonProperty(PropertyName = "DataType")]
  10. public int? DataType { get; set; }
  11. [JsonProperty(PropertyName = "AlarmType")]
  12. public int? AlarmType { get; set; }
  13. [JsonProperty(PropertyName = "OperType")]
  14. public int? OperType { get; set; }
  15. }
  16. }