Files
Umbraco-CMS/src/Umbraco.Infrastructure/Logging/Viewer/LogLevelCounts.cs
Mole 07d04dafb8 Align namespaces in Logging to Umbraco.Cms.Core
I'm a bit uncertain about this, they do have a reference to Serilog, but the vast majority of logging already resides in Core, so I opted to move it to Umbraco.Cms.Core
2021-02-12 11:38:50 +01:00

16 lines
300 B
C#

namespace Umbraco.Cms.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; }
}
}