Files
Foxel/Models/Response/Log/LogStatistics.cs

25 lines
509 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 Foxel.Models.Response.Log;
public class LogStatistics
{
/// <summary>
/// 总日志数
/// </summary>
public int TotalCount { get; set; }
/// <summary>
/// 今日日志数
/// </summary>
public int TodayCount { get; set; }
/// <summary>
/// 错误日志数Error + Critical
/// </summary>
public int ErrorCount { get; set; }
/// <summary>
/// 警告日志数
/// </summary>
public int WarningCount { get; set; }
}