initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum AccountType
|
||||
{
|
||||
Admin,
|
||||
User,
|
||||
Guest,
|
||||
Unknown
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum ConnectionState : byte
|
||||
{
|
||||
Closed = 1,
|
||||
Listening = 2,
|
||||
SYN_Sent = 3,
|
||||
Syn_Recieved = 4,
|
||||
Established = 5,
|
||||
Finish_Wait_1 = 6,
|
||||
Finish_Wait_2 = 7,
|
||||
Closed_Wait = 8,
|
||||
Closing = 9,
|
||||
Last_ACK = 10,
|
||||
Time_Wait = 11,
|
||||
Delete_TCB = 12
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum ContentType
|
||||
{
|
||||
// these values must match the index of the images in file manager
|
||||
Blob = 2,
|
||||
Application = 3,
|
||||
Text = 4,
|
||||
Archive = 5,
|
||||
Word = 6,
|
||||
Pdf = 7,
|
||||
Image = 8,
|
||||
Video = 9,
|
||||
Audio = 10
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum FileType
|
||||
{
|
||||
File,
|
||||
Directory,
|
||||
Back
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum KematianStatus
|
||||
{
|
||||
Idle,
|
||||
Collecting,
|
||||
Completed,
|
||||
Failed
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum MouseAction
|
||||
{
|
||||
LeftDown,
|
||||
LeftUp,
|
||||
RightDown,
|
||||
RightUp,
|
||||
MoveCursor,
|
||||
ScrollUp,
|
||||
ScrollDown,
|
||||
None
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum ProcessAction
|
||||
{
|
||||
Start,
|
||||
End,
|
||||
SetTopMost,
|
||||
None,
|
||||
Suspend
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum RemoteDesktopStatus
|
||||
{
|
||||
Start,
|
||||
Stop,
|
||||
Continue,
|
||||
}
|
||||
|
||||
public enum RemoteWebcamStatus
|
||||
{
|
||||
Start,
|
||||
Stop,
|
||||
Continue,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum ShutdownAction
|
||||
{
|
||||
Shutdown,
|
||||
Restart,
|
||||
Standby,
|
||||
Lockscreen
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum StartupType
|
||||
{
|
||||
LocalMachineRun,
|
||||
LocalMachineRunOnce,
|
||||
CurrentUserRun,
|
||||
CurrentUserRunOnce,
|
||||
StartMenu,
|
||||
LocalMachineRunX86,
|
||||
LocalMachineRunOnceX86
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Pulsar.Common.Enums
|
||||
{
|
||||
public enum UserStatus
|
||||
{
|
||||
Active,
|
||||
Idle
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user