电子围栏推送服务
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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