mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
14 lines
No EOL
324 B
C#
14 lines
No EOL
324 B
C#
using System;
|
|
|
|
namespace Wox.Plugin.Program.ProgramSources
|
|
{
|
|
|
|
[Serializable]
|
|
public sealed class UserStartMenuProgramSource : FileSystemProgramSource
|
|
{
|
|
public UserStartMenuProgramSource()
|
|
{
|
|
Location = Environment.GetFolderPath(Environment.SpecialFolder.Programs);
|
|
}
|
|
}
|
|
} |