19 lines
593 B
C#
19 lines
593 B
C#
// <copyright file="ServerShuttingDownMessage.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
using System.ComponentModel;
|
|
using MediaBrowser.Model.Session;
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
|
|
|
/// <summary>
|
|
/// Server shutting down message.
|
|
/// </summary>
|
|
public class ServerShuttingDownMessage : OutboundWebSocketMessage
|
|
{
|
|
/// <inheritdoc />
|
|
[DefaultValue(SessionMessageType.ServerShuttingDown)]
|
|
public override SessionMessageType MessageType => SessionMessageType.ServerShuttingDown;
|
|
}
|