9a0dfc00f1
* Add all websocket messages to generated openapi spec * Use oneOf * JsonIgnore ServerId * Oops * Add discriminators * Add WebSocketMessage container for Inbound and Outbound messages
10 lines
253 B
C#
10 lines
253 B
C#
namespace MediaBrowser.Controller.Net.WebSocketMessages;
|
|
|
|
/// <summary>
|
|
/// Class representing the list of outbound websocket message types.
|
|
/// Only used in openapi generation.
|
|
/// </summary>
|
|
public class InboundWebSocketMessage : WebSocketMessage
|
|
{
|
|
}
|