mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-30 02:05:00 -05:00
* Add all websocket messages to generated openapi spec * Use oneOf * JsonIgnore ServerId * Oops * Add discriminators * Add WebSocketMessage container for Inbound and Outbound messages
15 lines
453 B
C#
15 lines
453 B
C#
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
|
|
|
/// <summary>
|
|
/// Server restarting down message.
|
|
/// </summary>
|
|
public class ServerRestartingMessage : WebSocketMessage, IOutboundWebSocketMessage
|
|
{
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.ServerRestarting)]
|
|
public override SessionMessageType MessageType => SessionMessageType.ServerRestarting;
|
|
}
|