cs-codex-dist-tests/Framework/Logging/LogConfig.cs

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; }
}
}