11 lines
179 B
C#
11 lines
179 B
C#
namespace MxGateway.Server.Sessions;
|
|
|
|
public enum SessionManagerErrorCode
|
|
{
|
|
SessionNotFound,
|
|
SessionNotReady,
|
|
SessionLimitExceeded,
|
|
OpenFailed,
|
|
CloseFailed,
|
|
}
|