2014-03-18 20:05:27 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
2015-01-03 07:20:34 +00:00
|
|
|
|
namespace Wox.Plugin.Program.ProgramSources
|
2014-03-18 20:05:27 +00:00
|
|
|
|
{
|
2016-07-21 18:51:47 +00:00
|
|
|
|
|
2014-12-15 14:58:49 +00:00
|
|
|
|
[Serializable]
|
2016-07-21 18:51:47 +00:00
|
|
|
|
public sealed class UserStartMenuProgramSource : FileSystemProgramSource
|
2014-03-18 20:05:27 +00:00
|
|
|
|
{
|
2016-07-21 18:51:47 +00:00
|
|
|
|
public UserStartMenuProgramSource()
|
2014-03-19 12:16:20 +00:00
|
|
|
|
{
|
2016-07-21 18:51:47 +00:00
|
|
|
|
Location = Environment.GetFolderPath(Environment.SpecialFolder.Programs);
|
2014-03-18 20:05:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2016-07-21 18:51:47 +00:00
|
|
|
|
}
|