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.
|
- using Newtonsoft.Json;
- using Newtonsoft.Json.Linq;
-
- namespace NearCardAttendance.Service.MessageQueue.Model
- {
- public class IMEIMessage
- {
- [JsonProperty("imei")]
- public string IMEI { get; set; } = default!;
- [JsonProperty("content")]
- public JObject Content { get; set; } = default!;
- }
- }
|