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

46 lines
1.0KB

  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TelpoPush.Fence.Worker.Models.PushTemplates
  8. {
  9. /// <summary>
  10. /// 进出围栏http推送(校安)
  11. /// </summary>
  12. public class PushXiaoAnPushTemplate
  13. {
  14. /// <summary>
  15. /// 推送title
  16. /// </summary>
  17. [JsonProperty("title")]
  18. public string Title { get; set; }
  19. /// <summary>
  20. /// 地址
  21. /// </summary>
  22. [JsonProperty("address")]
  23. public string Address { get; set; }
  24. /// <summary>
  25. /// 推送内容
  26. /// </summary>
  27. [JsonProperty("textcontent")]
  28. public string TextContent { get; set; }
  29. /// <summary>
  30. /// 设备imei号
  31. /// </summary>
  32. [JsonProperty("nickname")]
  33. public string NickName { get; set; }
  34. /// <summary>
  35. /// 时间
  36. /// </summary>
  37. [JsonProperty("datetime")]
  38. public string DateTime { get; set; }
  39. }
  40. }