LANCommander/LANCommander.SDK/Models/Settings/DebugSettings.cs

13 lines
432 B
C#
Raw Permalink Normal View History

using Microsoft.Extensions.Logging;
using Serilog;
namespace LANCommander.SDK.Models;
2025-09-26 00:33:59 -05:00
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;
}