diff --git a/src/modules/launcher/Plugins/Microsoft.Plugin.Program/ProgramPluginSettings.cs b/src/modules/launcher/Plugins/Microsoft.Plugin.Program/ProgramPluginSettings.cs index 96025e4e59..7fab608c86 100644 --- a/src/modules/launcher/Plugins/Microsoft.Plugin.Program/ProgramPluginSettings.cs +++ b/src/modules/launcher/Plugins/Microsoft.Plugin.Program/ProgramPluginSettings.cs @@ -11,11 +11,11 @@ namespace Microsoft.Plugin.Program { public DateTime LastIndexTime { get; set; } - public List ProgramSources { get; } = new List(); + public List ProgramSources { get; set; } = new List(); - public List DisabledProgramSources { get; } = new List(); + public List DisabledProgramSources { get; set; } = new List(); - public List ProgramSuffixes { get; } = new List() { "bat", "appref-ms", "exe", "lnk", "url" }; + public List ProgramSuffixes { get; set; } = new List() { "bat", "appref-ms", "exe", "lnk", "url" }; public bool EnableStartMenuSource { get; set; } = true;