You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
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. }