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

10 lines
279 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();
}