|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace HealthMonitor.Service.Sub
- {
- public class ReceiveMessageModel
- {
- public ReceiveMessageModel(string db,string table, string topic, string messageId,string body)
- {
- DB = db;
- Table = table;
- MessageId = messageId;
- Topic = topic;
- Body = body;
- }
-
- public string MessageId { get; set; }
- public string Topic { get; set; }
- public string Body { get; set; }
- public string Table { get; set; }
- public string DB { get; set; }
-
- }
- }
|