2023-06-10 07:28:21 -06:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
using MediaBrowser.Model.Session;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// General command websocket message.
|
|
|
|
|
/// </summary>
|
2023-06-29 05:44:36 -06:00
|
|
|
public class GeneralCommandMessage : OutboundWebSocketMessage<GeneralCommand>
|
2023-06-10 07:28:21 -06:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="GeneralCommandMessage"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">The general command.</param>
|
|
|
|
|
public GeneralCommandMessage(GeneralCommand data)
|
|
|
|
|
: base(data)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
[DefaultValue(SessionMessageType.GeneralCommand)]
|
|
|
|
|
public override SessionMessageType MessageType => SessionMessageType.GeneralCommand;
|
|
|
|
|
}
|