mirror of
https://github.com/hmaxnl/DotBased.git
synced 2025-04-04 21:51:26 +02:00
9 lines
200 B
C#
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;
|
|
} |