#if !NET20

namespace Apewer.WebSocket
{
    internal enum FrameType : byte
    {
        Continuation,
        Text,
        Bytes,
        Close = 8,
        Ping = 9,
        Pong = 10,
    }
}

#endif