using System;
using System.Collections.Generic;
using System.Text;
namespace GxPress.Request.Notice
{
///
/// 当前通知阅读情况查询
///
public class NoticeReadListRequest
{
///
/// 0 全部 1 阅读 2 未读
///
public int ReadType { get; set; }
///
/// 通知ID
///
public int NoticeId { get; set; }
///
/// 名字搜索
///
///
public string Key { get; set; }
}
}