电子围栏推送服务
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.

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