mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
39edf1a8ed
1. part of #389 2. file rename 3. fixup
17 lines
466 B
C#
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;
|
|
}
|
|
}
|