aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/WebSocketMessages/Outbound/ServerShuttingDownMessage.cs
blob: 0b998a52396500273af43b30cb96ca760133ccaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.ComponentModel;
using MediaBrowser.Model.Session;

namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;

/// <summary>
/// Server shutting down message.
/// </summary>
public class ServerShuttingDownMessage : WebSocketMessage, IOutboundWebSocketMessage
{
    /// <inheritdoc />
    [DefaultValue(SessionMessageType.ServerShuttingDown)]
    public override SessionMessageType MessageType => SessionMessageType.ServerShuttingDown;
}