using System; using System.Collections.Generic; using System.Text; namespace Himp.TaskScheduling { public class EventMsgTopicCreateDto { /// /// /// public string EventMsgTopicCodg { get; set; } /// /// /// public string EventMsgTopicName { get; set; } /// /// /// public string TopicFullPath { get; set; } /// /// /// public int Srtno { get; set; } /// /// /// public int LvIndex { get; set; } /// /// /// public bool DefaultFlag { get; set; } /// /// /// public Guid? ParentId { get; set; } } }