melonvpn-original-cs/MelonVPNCore/ClientResponseState.cs

18 lines
266 B
C#
Raw Normal View History

2020-09-22 23:10:16 +01:00
namespace MelonVPNCore
{
public enum ClientResponseState
{
Online,
Offline,
Error,
ServerError,
None,
Blank,
2021-03-19 09:13:32 +00:00
Sent,
Restarting,
Starting,
RestartOn,
RestartOff
2020-09-22 23:10:16 +01:00
}
}