2016-03-28 03:09:57 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2016-07-21 19:51:47 +01:00
|
|
|
|
using Wox.Plugin.Program.ProgramSources;
|
2015-01-05 22:41:17 +08:00
|
|
|
|
|
|
|
|
|
|
namespace Wox.Plugin.Program
|
|
|
|
|
|
{
|
2016-04-21 01:53:21 +01:00
|
|
|
|
public class Settings
|
2015-01-05 22:41:17 +08:00
|
|
|
|
{
|
2016-07-21 19:51:47 +01:00
|
|
|
|
public List<FileSystemProgramSource> ProgramSources { get; set; } = new List<FileSystemProgramSource>();
|
2016-04-21 01:53:21 +01:00
|
|
|
|
public string[] ProgramSuffixes { get; set; } = {"bat", "appref-ms", "exe", "lnk"};
|
2015-01-05 22:41:17 +08:00
|
|
|
|
|
2016-04-21 01:53:21 +01:00
|
|
|
|
public bool EnableStartMenuSource { get; set; } = true;
|
2016-03-28 03:09:57 +01:00
|
|
|
|
|
2016-04-21 01:53:21 +01:00
|
|
|
|
public bool EnableRegistrySource { get; set; } = true;
|
2016-08-19 20:34:20 +01:00
|
|
|
|
|
|
|
|
|
|
internal const char SuffixSeperator = ';';
|
2015-01-05 22:41:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|