mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
14 lines
324 B
C#
14 lines
324 B
C#
using System;
|
|
|
|
namespace Wox.Plugin.Program.ProgramSources
|
|
{
|
|
|
|
[Serializable]
|
|
public sealed class UserStartMenuProgramSource : FileSystemProgramSource
|
|
{
|
|
public UserStartMenuProgramSource()
|
|
{
|
|
Location = Environment.GetFolderPath(Environment.SpecialFolder.Programs);
|
|
}
|
|
}
|
|
} |