選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

29 行
834B

  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 GpsCardGatewayPosition.Service.Resolver.Property.Dto
  8. {
  9. [Serializable]
  10. public class PropertyModel
  11. {
  12. [JsonProperty("deviceType")]
  13. public string DeviceType { get; set; }
  14. [JsonProperty("iotId")]
  15. public string IotId { get; set; }
  16. [JsonProperty("requestId")]
  17. public string RequestId { get; set; }
  18. [JsonProperty("productKey")]
  19. public string ProductKey { get; set; }
  20. [JsonProperty("gmtCreate")]
  21. public long GmtCreate { get; set; }
  22. [JsonProperty("deviceName")]
  23. public string DeviceName { get; set; }
  24. [JsonProperty("items")]
  25. public object Items { get; set; }
  26. }
  27. }