您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
331B

  1. using Newtonsoft.Json;
  2. using Newtonsoft.Json.Linq;
  3. namespace NearCardAttendance.Service.MessageQueue.Model
  4. {
  5. public class IMEIMessage
  6. {
  7. [JsonProperty("imei")]
  8. public string IMEI { get; set; } = default!;
  9. [JsonProperty("content")]
  10. public JObject Content { get; set; } = default!;
  11. }
  12. }