// Copyright © WireMock.Net
namespace WireMock.WebSockets;
///
/// Represents the direction of a WebSocket message.
///
internal enum WebSocketMessageDirection
{
///
/// Message received from the client.
///
Receive,
///
/// Message sent to the client.
///
Send
}