Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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