mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-26 23:00:18 -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
436 B
C#
15 lines
436 B
C#
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
|
|
|
/// <summary>
|
|
/// Restart required.
|
|
/// </summary>
|
|
public class RestartRequiredMessage : WebSocketMessage, IOutboundWebSocketMessage
|
|
{
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.RestartRequired)]
|
|
public override SessionMessageType MessageType => SessionMessageType.RestartRequired;
|
|
}
|