2
0
mirror of synced 2025-01-11 09:06:56 +00:00

15 lines
306 B
C#
Raw Normal View History

2023-04-12 13:53:55 +02:00
namespace Logging
{
public class LogConfig
{
2023-04-25 11:31:15 +02:00
public LogConfig(string logRoot, bool debugEnabled)
2023-04-12 16:06:04 +02:00
{
LogRoot = logRoot;
2023-04-25 11:31:15 +02:00
DebugEnabled = debugEnabled;
2023-04-12 16:06:04 +02:00
}
public string LogRoot { get; }
2023-04-25 11:31:15 +02:00
public bool DebugEnabled { get; }
}
}