DotBased/DotBased/Logging/LogOptions.cs
2024-04-23 20:42:56 +02:00

9 lines
200 B
C#

namespace DotBased.Logging;
public class LogOptions
{
/// <summary>
/// The severty the logger will log
/// </summary>
public LogSeverity Severity { get; set; } = LogSeverity.Trace;
}