using System;
namespace Myshipping.Core.Service;
///
/// 通知公告接收参数
///
public class NoticeReceiveOutput : NoticeBase
{
///
/// Id
///
public long Id { get; set; }
///
/// 阅读状态(字典 0未读 1已读)
///
public int ReadStatus { get; set; }
///
/// 阅读时间
///
public DateTime ReadTime { get; set; }
}