mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
2e4a1680b9
1. Parallel linq 2. remove depth 3. fix #257
23 lines
615 B
C#
23 lines
615 B
C#
using System.Collections.Generic;
|
|
using Wox.Plugin.Program.Programs;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
public class Settings
|
|
{
|
|
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;
|
|
|
|
internal const char SuffixSeperator = ';';
|
|
|
|
public class ProgramSource
|
|
{
|
|
public string Location { get; set; }
|
|
}
|
|
}
|
|
}
|