10 lines
No EOL
279 B
C#
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();
|
|
} |