using Microsoft.Extensions.Logging;
namespace YD_Event.Application.Logging.Dtos;
public class LogPageQueryInput : Pagination
{
///
/// 关键词
///
public string Keyword { get; set; }
///
/// 日志级别
///
public LogLevel? LogLevel { get; set; }
///
/// 用户名
///
public string Account { get; set; }
}