using JNPF.DependencyInjection; namespace JNPF.Extend.Entitys.Dto.Schedule; /// /// 新建日程安排. /// [SuppressSniffer] public class ScheduleCrInput { /// /// 开始时间. /// public DateTime? startTime { get; set; } /// /// 结束时间. /// public DateTime? endTime { get; set; } /// /// 日程内容. /// public string? content { get; set; } /// /// 微信提醒(1-提醒,0-不提醒). /// public int? weChatAlert { get; set; } /// /// 邮件提醒(1-提醒,0-不提醒). /// public int? mailAlert { get; set; } /// /// 短信提醒(1-提醒,0-不提醒). /// public int? mobileAlert { get; set; } /// /// APP提醒(1-提醒,0-不提醒). /// public int? appAlert { get; set; } /// /// 提醒设置. /// public int? early { get; set; } /// /// 日程颜色. /// public string? colour { get; set; } /// /// 颜色样式. /// public string? colourCss { get; set; } }