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

19 lines
550 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Wox.Plugin.Program.ProgramSources;
namespace Wox.Plugin.Program
{
public class Settings
{
public List<FileSystemProgramSource> ProgramSources { get; set; } = new List<FileSystemProgramSource>();
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 = ';';
}
}