aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/WebSocketMessage.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2023-06-10 07:28:21 -0600
committerGitHub <noreply@github.com>2023-06-10 07:28:21 -0600
commit9a0dfc00f1e36092476f62984ba66886032f4f89 (patch)
tree935482bc811b30913944703fb7b980a78294fc17 /MediaBrowser.Controller/Net/WebSocketMessage.cs
parent81cf798430a3d8c5504bc30b2d59af26fe5e2b9f (diff)
Add all websocket messages to generated openapi spec (#9682)
* Add all websocket messages to generated openapi spec * Use oneOf * JsonIgnore ServerId * Oops * Add discriminators * Add WebSocketMessage container for Inbound and Outbound messages
Diffstat (limited to 'MediaBrowser.Controller/Net/WebSocketMessage.cs')
-rw-r--r--MediaBrowser.Controller/Net/WebSocketMessage.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Net/WebSocketMessage.cs b/MediaBrowser.Controller/Net/WebSocketMessage.cs
new file mode 100644
index 000000000..c02bcd70b
--- /dev/null
+++ b/MediaBrowser.Controller/Net/WebSocketMessage.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Text.Json.Serialization;
+using MediaBrowser.Model.Session;
+
+namespace MediaBrowser.Controller.Net;
+
+/// <summary>
+/// Websocket message without data.
+/// </summary>
+public abstract class WebSocketMessage
+{
+ /// <summary>
+ /// Gets or sets the type of the message.
+ /// TODO make this abstract and get only.
+ /// </summary>
+ public virtual SessionMessageType MessageType { get; set; }
+
+ /// <summary>
+ /// Gets or sets the message id.
+ /// </summary>
+ public Guid MessageId { get; set; }
+
+ /// <summary>
+ /// Gets or sets the server id.
+ /// </summary>
+ [JsonIgnore]
+ public string? ServerId { get; set; }
+}