aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/WebSocketMessages/IOutboundWebSocketMessage.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2023-06-15 17:53:52 +0200
committerShadowghost <Ghost_of_Stone@web.de>2023-06-15 17:53:52 +0200
commit32499f0e98a870872c184b23cd6d514f7a9fa09b (patch)
treea46776045d8e29366803dded6ecd717f757cbccd /MediaBrowser.Controller/Net/WebSocketMessages/IOutboundWebSocketMessage.cs
parent006b04dc0b2fcbdcad50cbaf213cb1e7e47ea52a (diff)
parentd874262bf9826b348e146efb4958af447d75f7c8 (diff)
Merge branch 'master' into network-rewrite
Diffstat (limited to 'MediaBrowser.Controller/Net/WebSocketMessages/IOutboundWebSocketMessage.cs')
-rw-r--r--MediaBrowser.Controller/Net/WebSocketMessages/IOutboundWebSocketMessage.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Net/WebSocketMessages/IOutboundWebSocketMessage.cs b/MediaBrowser.Controller/Net/WebSocketMessages/IOutboundWebSocketMessage.cs
new file mode 100644
index 000000000..c74a254a6
--- /dev/null
+++ b/MediaBrowser.Controller/Net/WebSocketMessages/IOutboundWebSocketMessage.cs
@@ -0,0 +1,10 @@
+#pragma warning disable CA1040
+
+namespace MediaBrowser.Controller.Net.WebSocketMessages;
+
+/// <summary>
+/// Interface representing that the websocket message is outbound.
+/// </summary>
+public interface IOutboundWebSocketMessage
+{
+}