2
0
mirror of synced 2025-01-09 08:12:10 +00:00

13 lines
204 B
C#
Raw Normal View History

2023-04-12 13:53:55 +02:00
namespace Logging
{
public class LogConfig
{
public LogConfig(string logRoot)
2023-04-12 16:06:04 +02:00
{
LogRoot = logRoot;
}
public string LogRoot { get; }
}
}