电子围栏推送服务
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 lines
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. }