mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
17 lines
498 B
C#
17 lines
498 B
C#
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;
|
|
}
|
|
}
|