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

23 lines
615 B
C#
Raw Normal View History

2016-08-20 06:24:21 +08:00
using System.Collections.Generic;
2016-08-20 08:17:28 +08:00
using Wox.Plugin.Program.Programs;
namespace Wox.Plugin.Program
{
public class Settings
{
2016-08-20 08:17:28 +08:00
public List<ProgramSource> ProgramSources { get; set; } = new List<ProgramSource>();
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 = ';';
2016-08-20 08:17:28 +08:00
public class ProgramSource
{
public string Location { get; set; }
}
}
}