We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19e6e9c commit b5e669aCopy full SHA for b5e669a
FetchXmlBuilder/Settings/FXBSettings.cs
@@ -8,6 +8,7 @@
8
using System.Linq;
9
using System.Xml.Serialization;
10
using WeifenLuo.WinFormsUI.Docking;
11
+using XrmToolBox.Extensibility;
12
13
namespace Rappen.XTB.FetchXmlBuilder.Settings
14
{
@@ -57,6 +58,11 @@ public bool UseFriendlyNames
57
58
public CodeGenerators CodeGenerators { get; set; } = new CodeGenerators();
59
public AiSettings AiSettings { get; set; } = new AiSettings();
60
public List<AiSettings> AiSettingsList { get; set; } = new List<AiSettings>();
61
+
62
+ internal void Save()
63
+ {
64
+ SettingsManager.Instance.Save(typeof(FetchXmlBuilder), this, "[Common]");
65
+ }
66
}
67
68
public class ExecuteOptions
0 commit comments