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