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.
|
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace Himp.TaskScheduling
- {
- public class EventMsgRecCreateDto
- {
- /// <summary>
- /// 消息类型
- /// </summary>
- public string MsgTopicName { get; set; }
-
- /// <summary>
- /// 全路径
- /// </summary>
- public string TopicFullPath { get; set; }
-
- /// <summary>
- /// 消息内容
- /// </summary>
- public string MsgCont { get; set; }
- }
- }
|