Files
2023-05-31 10:19:05 +08:00

41 lines
825 B
C#
Raw Permalink 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 MessageListOutput
{
/// <summary>
/// id.
/// </summary>
public string id { get; set; }
/// <summary>
/// 标题.
/// </summary>
public string title { get; set; }
/// <summary>
/// 正文内容.
/// </summary>
public int? type { get; set; }
/// <summary>
/// 发送人员.
/// </summary>
public string releaseUser { get; set; }
/// <summary>
/// 发送时间.
/// </summary>
public DateTime? releaseTime { get; set; }
/// <summary>
/// 是否已读(0-未读1-已读).
/// </summary>
public int? isRead { get; set; }
public int? flowType { get; set; }
}