mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 11:12:45 +01:00
* Further split inbound and outbound messages * Fix datatype for inbound start messages * fixes from review
8 lines
207 B
C#
8 lines
207 B
C#
namespace MediaBrowser.Controller.Net.WebSocketMessages;
|
|
|
|
/// <summary>
|
|
/// Inbound websocket message.
|
|
/// </summary>
|
|
public class InboundWebSocketMessage : WebSocketMessage, IInboundWebSocketMessage
|
|
{
|
|
}
|