using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Resolver.Property.Dto { [Serializable] public class PropertyModel { [JsonProperty("deviceType")] public string DeviceType { get; set; } [JsonProperty("iotId")] public string IotId { get; set; } [JsonProperty("requestId")] public string RequestId { get; set; } [JsonProperty("productKey")] public string ProductKey { get; set; } [JsonProperty("gmtCreate")] public long GmtCreate { get; set; } [JsonProperty("deviceName")] public string DeviceName { get; set; } [JsonProperty("items")] public object Items { get; set; } } }