mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-17 05:13:40 +00:00
10 lines
152 B
C#
10 lines
152 B
C#
namespace TcpSharp;
|
|
|
|
public enum DisconnectReason : byte
|
|
{
|
|
None = 0,
|
|
Exception = 1,
|
|
ServerAborted = 2,
|
|
ServerStopped = 3,
|
|
}
|