OpenAuth.Net/OpenAuth.App/SysMessage/Request/QuerySysMessageListReq.cs
yubaolee 8608ce78f5 流程处理增加消息通知
修复消息标记已读、删除
2021-05-26 17:02:05 +08:00

10 lines
245 B
C#
Raw 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.

namespace OpenAuth.App.Request
{
public class QuerySysMessageListReq : PageReq
{
/// <summary>
/// 消息状态 0:未读1已读 999:全部
/// </summary>
public int Status { get; set; }
}
}