|
12345678910111213141516 |
- using Newtonsoft.Json;
- namespace TelpoPush.WanJiaAn.Worker.Models.Enum
- {
-
-
-
- public class HeadersDto
- {
- [JsonProperty(PropertyName = "DataType")]
- public int? DataType { get; set; }
- [JsonProperty(PropertyName = "AlarmType")]
- public int? AlarmType { get; set; }
- [JsonProperty(PropertyName = "OperType")]
- public int? OperType { get; set; }
- }
- }
|