Files
Foxel/Services/Logging/DatabaseLoggerConfiguration.cs

8 lines
193 B
C#

namespace Foxel.Services.Logging;
public class DatabaseLoggerConfiguration
{
public LogLevel MinLevel { get; set; } = LogLevel.Information;
public bool Enabled { get; set; } = true;
}