using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Email;
///
/// (带分页)获取邮件列表(收件箱、标星件、草稿箱、已发送).
///
[SuppressSniffer]
public class EmailListOutput
{
///
/// 是否已读(1-已读,0-未) inBox,star.
///
public int? isRead { get; set; }
///
/// 时间 inBox,star.
///
public DateTime? fdate { get; set; }
///
/// 主键ID.
///
public string? id { get; set; }
///
/// 主题.
///
public string? subject { get; set; }
///
/// 是否标星(1-是,0-否)inBox,star.
///
public int? starred { get; set; }
///
/// 附件.
///
public string? attachment { get; set; }
///
/// 发件人 inBox,star.
///
public string? sender { get; set; }
///
/// 收件人 draft,sent.
///
public string? recipient { get; set; }
///
/// 创建时间.
///
public DateTime? creatorTime { get; set; }
}