18 lines
266 B
C#
18 lines
266 B
C#
namespace MelonVPNCore
|
|
{
|
|
public enum ClientResponseState
|
|
{
|
|
Online,
|
|
Offline,
|
|
Error,
|
|
ServerError,
|
|
None,
|
|
Blank,
|
|
Sent,
|
|
Restarting,
|
|
Starting,
|
|
RestartOn,
|
|
RestartOff
|
|
}
|
|
}
|