2
0
mirror of synced 2025-01-10 16:46:05 +00:00
2023-04-25 11:31:15 +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; }
}
}