Quasar/Quasar.Common/Enums/StartupType.cs

14 lines
261 B
C#
Raw Normal View History

2018-09-16 18:15:46 +00:00
namespace Quasar.Common.Enums
{
public enum StartupType
{
LocalMachineRun,
LocalMachineRunOnce,
CurrentUserRun,
CurrentUserRunOnce,
StartMenu,
LocalMachineRunX86,
LocalMachineRunOnceX86
2018-09-16 18:15:46 +00:00
}
}