mirror of
https://github.com/vacp2p/cs-codex-dist-tests.git
synced 2025-02-24 00:08:22 +00:00
13 lines
204 B
C#
13 lines
204 B
C#
namespace Logging
|
|
{
|
|
public class LogConfig
|
|
{
|
|
public LogConfig(string logRoot)
|
|
{
|
|
LogRoot = logRoot;
|
|
}
|
|
|
|
public string LogRoot { get; }
|
|
}
|
|
}
|