Files
tnb.server/message/Tnb.Message.Entitys/Dto/Message/MessageNoticeOutput.cs
2023-03-13 15:00:34 +08:00

45 lines
894 B
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.Message.Entitys.Dto.Message;
/// <summary>
/// 消息公告输出.
/// </summary>
[SuppressSniffer]
public class MessageNoticeOutput
{
/// <summary>
/// id.
/// </summary>
public string id { get; set; }
/// <summary>
/// 标题.
/// </summary>
public string title { get; set; }
/// <summary>
/// 发布人员.
/// </summary>
public string releaseUser { get; set; }
/// <summary>
/// 发布时间.
/// </summary>
public DateTime? releaseTime { get; set; }
/// <summary>
/// 创建时间.
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 状态(0-存草稿1-已发布).
/// </summary>
public int? enabledMark { get; set; }
/// <summary>
/// 类型.
/// </summary>
public int? type { get; set; }
}