Files
tnb.server/message/Tnb.Message.Entitys/Dto/Message/MessageListQueryInput.cs
2023-03-13 15:00:34 +08:00

21 lines
439 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.
using JNPF.Common.Filter;
using JNPF.DependencyInjection;
namespace JNPF.Message.Entitys.Dto.Message;
/// <summary>
/// 消息列表查询输入.
/// </summary>
[SuppressSniffer]
public class MessageListQueryInput : PageInputBase
{
/// <summary>
/// 类型.
/// </summary>
public int? type { get; set; }
/// <summary>
/// 是否已读(0未读 ).
/// </summary>
public string? isRead { get; set; }
}