namespace ACE.Entity.Enum
{
///
/// The ChatNetworkBlobType identifies the type of Turbine Chat message.
/// Used with F7DE: Turbine Chat
///
public enum ChatNetworkBlobType
{
NETBLOB_UNKNOWN = 0,
///
/// Server -> Client
///
NETBLOB_EVENT_BINARY = 1,
NETBLOB_EVENT_XMLRPC = 2,
///
/// Client -> Server
///
NETBLOB_REQUEST_BINARY = 3,
NETBLOB_REQUEST_XMLRPC = 4,
///
/// Server -> Client
///
NETBLOB_RESPONSE_BINARY = 5,
NETBLOB_RESPONSE_XMLRPC = 6,
}
}