You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
698 B
24 lines
698 B
1 year ago
|
using System.ComponentModel;
|
||
|
using MediaBrowser.Model.Session;
|
||
|
|
||
|
namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Playstate message.
|
||
|
/// </summary>
|
||
|
public class PlaystateMessage : WebSocketMessage<PlaystateRequest>, IOutboundWebSocketMessage
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="PlaystateMessage"/> class.
|
||
|
/// </summary>
|
||
|
/// <param name="data">Playstate request data.</param>
|
||
|
public PlaystateMessage(PlaystateRequest data)
|
||
|
: base(data)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/// <inheritdoc />
|
||
|
[DefaultValue(SessionMessageType.Playstate)]
|
||
|
public override SessionMessageType MessageType => SessionMessageType.Playstate;
|
||
|
}
|