16 lines
296 B
C#
16 lines
296 B
C#
namespace Umbraco.Core.Logging.Viewer
|
|
{
|
|
public class LogLevelCounts
|
|
{
|
|
public int Information { get; set; }
|
|
|
|
public int Debug { get; set; }
|
|
|
|
public int Warning { get; set; }
|
|
|
|
public int Error { get; set; }
|
|
|
|
public int Fatal { get; set; }
|
|
}
|
|
}
|