using Admin.NET.Core; namespace Admin.NET.Application { /// /// 通知公告接收参数 /// public class NoticeReceiveOutput : NoticeBase { /// /// Id /// public long Id { get; set; } /// /// 阅读状态(字典 0未读 1已读) /// public NoticeUserStatus ReadStatus { get; set; } /// /// 阅读时间 /// public DateTimeOffset? ReadTime { get; set; } } }