PowerToys/Plugins/Wox.Plugin.Program/Settings.cs

18 lines
530 B
C#
Raw Normal View History

2016-08-20 06:24:21 +08:00
using System.Collections.Generic;
using Wox.Plugin.Program.ProgramSources;
namespace Wox.Plugin.Program
{
public class Settings
{
2016-08-20 06:24:21 +08:00
public List<UnregisteredPrograms> ProgramSources { get; set; } = new List<UnregisteredPrograms>();
public string[] ProgramSuffixes { get; set; } = {"bat", "appref-ms", "exe", "lnk"};
public bool EnableStartMenuSource { get; set; } = true;
public bool EnableRegistrySource { get; set; } = true;
2016-08-20 03:34:20 +08:00
internal const char SuffixSeperator = ';';
}
}