using System; using System.Collections.Generic; using System.Text; namespace Himp.TaskScheduling { public class EventMsgRecCreateDto { /// /// 消息类型 /// public string MsgTopicName { get; set; } /// /// 全路径 /// public string TopicFullPath { get; set; } /// /// 消息内容 /// public string MsgCont { get; set; } } }