LANCommander/LANCommander.SDK/Models/Settings/DebugSettings.cs
2025-09-26 00:33:59 -05:00

13 lines
No EOL
432 B
C#

using Microsoft.Extensions.Logging;
using Serilog;
namespace LANCommander.SDK.Models;
public class DebugSettings
{
public bool EnableScriptDebugging { get; set; } = false;
public LogLevel LogLevel { get; set; } = LogLevel.Warning;
public string LoggingPath { get; set; } = "Logs";
public RollingInterval LoggingArchivePeriod { get; set; } = RollingInterval.Day;
public int MaxArchiveFiles { get; set; } = 10;
}