2
0
mirror of synced 2025-01-11 17:14:25 +00:00
2023-09-20 10:51:47 +02:00

15 lines
306 B
C#

namespace Logging
{
public class LogConfig
{
public LogConfig(string logRoot, bool debugEnabled)
{
LogRoot = logRoot;
DebugEnabled = debugEnabled;
}
public string LogRoot { get; }
public bool DebugEnabled { get; }
}
}