PowerToys/Plugins/Wox.Plugin.Program/Settings.cs
2016-04-21 20:56:53 +01:00

17 lines
466 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
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;
}
}