Added new section to handle the PreventTransferForClassNames settings.

This commit is contained in:
Brett Hewitson 2021-06-19 15:34:44 +10:00
parent afa461f956
commit a54f1e5381
17 changed files with 484 additions and 35 deletions

View file

@ -2539,5 +2539,29 @@ namespace ServerManagerTool {
return ((string)(this["VersionFile"]));
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool SectionPreventTransferOverridesIsExpanded {
get {
return ((bool)(this["SectionPreventTransferOverridesIsExpanded"]));
}
set {
this["SectionPreventTransferOverridesIsExpanded"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("True")]
public bool SectionPreventTransferOverridesEnabled {
get {
return ((bool)(this["SectionPreventTransferOverridesEnabled"]));
}
set {
this["SectionPreventTransferOverridesEnabled"] = value;
}
}
}
}