mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 00:35:26 +03:00
11 lines
231 B
C#
11 lines
231 B
C#
|
|
#pragma warning disable CA1040
|
||
|
|
|
||
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Interface representing that the websocket message is inbound.
|
||
|
|
/// </summary>
|
||
|
|
public interface IInboundWebSocketMessage
|
||
|
|
{
|
||
|
|
}
|