選択できるのは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. }