using System.Collections.Generic; namespace WandEnhancer.Models { public enum EPatchType { ActivatePro = 1, DisableUpdates = 2, DevToolsOnF12 = 8, RemoteWebPanelPreview = 16 } public sealed class PatchConfig { public HashSet PatchTypes { get; set; } public List CustomScriptPaths { get; set; } = new List(); /// When set, the patch selection is saved so the launcher re-applies it after a Wand update. public bool AutoApplyAfterUpdate { get; set; } } }