mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-23 22:18:39 -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()
|
|
{
|
|
}
|
|
} |