15 lines
306 B
C#
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; }
|
|
}
|
|
}
|