21 lines
427 B
C#
Raw Normal View History

2025-12-17 10:32:52 +08:00
using Microsoft.Extensions.Logging;
2025-12-17 11:12:13 +08:00
namespace YD_Event.Application.Logging.Dtos;
2025-12-17 10:32:52 +08:00
public class LogPageQueryInput : Pagination
{
/// <summary>
/// 关键词
/// </summary>
public string Keyword { get; set; }
/// <summary>
/// 日志级别
/// </summary>
public LogLevel? LogLevel { get; set; }
/// <summary>
/// 用户名
/// </summary>
public string Account { get; set; }
}