- using Newtonsoft.Json;
- namespace TelpoPush.Models.Dto
- {
-
-
-
- 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; }
- }
- }
|