using MyCode.Project.Infrastructure.Enumeration; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Domain.Message.Response.Common { // // 摘要: // 列表项结果-下拉列表 public class ItemResult { // // 摘要: // 文本 public string Text { get; set; } // // 摘要: // 值 public string Value { get; set; } // // 摘要: // 排序号 public int? SortId { get; set; } } public class ServiceDeptList { /// /// 文本 /// public string Text { get; set; } /// /// 值 /// public string Value { get; set; } /// /// 排序号 /// public int? SortId { get; set; } /// /// 是否显示 1=显示 0=隐藏 /// public int IfShow { get; set; } } public class NameValue { // // 摘要: // 文本 public string Name { get; set; } // // 摘要: // 值 public int Value { get; set; } // // 摘要: // 排序号 public int? SortId { get; set; } } public class TypeValue { /// /// 4:新评论通知 5:打卡提醒 , /// public int Type { get; set; } /// /// 模板id /// public string Value { get; set; } } }