using System; using System.Collections.Generic; using System.Text; namespace GxPress.Result.App.WaitHandle { /// /// 待办事项详情 /// public class WaitHandleResult { public int Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 是否执行 /// public bool IsExecute { get; set; } /// /// 闹钟时间 /// public DateTime AlarmTime { get; set; } /// /// 提前多少分钟 /// public int Minute { get; set; } /// /// 等级 3 高 2 中 1 低 /// public int Level { get; set; } /// /// 标题ID /// public int LabelId { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 是否手动结束 /// public bool IsFinish { get; set; } /// /// 标签名称 /// public string LabelName { get; set; } } }