mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-02 19:08:04 -05:00
12 lines
224 B
C#
12 lines
224 B
C#
namespace Common.Configuration.Logging;
|
|
|
|
public class FileLogConfig : IConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
|
|
public string Path { get; set; } = string.Empty;
|
|
|
|
public void Validate()
|
|
{
|
|
}
|
|
} |