Files
tnb.server/extend/Tnb.Extend.Entitys/Dto/Schedule/ScheduleCrInput.cs
2023-03-13 15:00:34 +08:00

61 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Schedule;
/// <summary>
/// 新建日程安排.
/// </summary>
[SuppressSniffer]
public class ScheduleCrInput
{
/// <summary>
/// 开始时间.
/// </summary>
public DateTime? startTime { get; set; }
/// <summary>
/// 结束时间.
/// </summary>
public DateTime? endTime { get; set; }
/// <summary>
/// 日程内容.
/// </summary>
public string? content { get; set; }
/// <summary>
/// 微信提醒(1-提醒0-不提醒).
/// </summary>
public int? weChatAlert { get; set; }
/// <summary>
/// 邮件提醒(1-提醒0-不提醒).
/// </summary>
public int? mailAlert { get; set; }
/// <summary>
/// 短信提醒(1-提醒0-不提醒).
/// </summary>
public int? mobileAlert { get; set; }
/// <summary>
/// APP提醒(1-提醒0-不提醒).
/// </summary>
public int? appAlert { get; set; }
/// <summary>
/// 提醒设置.
/// </summary>
public int? early { get; set; }
/// <summary>
/// 日程颜色.
/// </summary>
public string? colour { get; set; }
/// <summary>
/// 颜色样式.
/// </summary>
public string? colourCss { get; set; }
}