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.
|
- namespace NearCardAttendance.Service.MessageQueue.Model
- {
- public class EventData
- {
- public string EventTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff");
- public string TopicName { get; set; } = default!;
- public string MessageId { get; set; } = default!;
-
- public string IMEI{ get; set; } = default!;
-
- public string Content { get; set; } = default!;
- //public T Message { get; set; } = default!;
- }
- }
|