LANCommander/LANCommander.Server.Settings/Models/ScriptSettings.cs

11 lines
336 B
C#
Raw Permalink Normal View History

using LANCommander.SDK;
namespace LANCommander.Server.Settings.Models;
public class ScriptSettings
{
public bool EnableAutomaticRepackaging { get; set; } = false;
public int RepackageEvery { get; set; } = 24;
2025-12-11 02:06:04 -06:00
public SnippetSettings Snippets { get; set; } = new();
public ModuleSettings Modules { get; set; } = new();
}