Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- using Newtonsoft.Json;
- namespace TelpoPush.Fence.Worker.Models.Enum
- {
- /// <summary>
- /// 消息数据头
- /// </summary>
- 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; }
- }
- }
|