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

35 行
747B

  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.Model.Cache
  8. {
  9. public class Person
  10. {
  11. [JsonProperty("personId")]
  12. public string PersonId { get; set; }
  13. [JsonProperty("deviceId")]
  14. public string DeviceId { get; set; }
  15. [JsonProperty("serialno")]
  16. public string SerialNo { get; set; }
  17. [JsonProperty("remarks")]
  18. public string Remarks { get; set; }
  19. }
  20. public class GpsDevicePerson
  21. {
  22. [JsonProperty("person")]
  23. public Person Person { get; set; }
  24. [JsonProperty("time")]
  25. public DateTime Time { get; set; }
  26. }
  27. }