Quasar/Quasar.Common/Enums/StartupType.cs

12 lines
201 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
}
}