LANCommander/LANCommander.Server.Settings/Models/ScriptSettings.cs
2025-12-11 02:06:04 -06:00

10 lines
No EOL
279 B
C#

using LANCommander.SDK;
namespace LANCommander.Server.Settings.Models;
public class ScriptSettings
{
public bool EnableAutomaticRepackaging { get; set; } = false;
public int RepackageEvery { get; set; } = 24;
public SnippetSettings Snippets { get; set; } = new();
}