using System.ComponentModel;
using MediaBrowser.Controller.Session;
using MediaBrowser.Model.Session;
namespace MediaBrowser.Controller.Net.WebSocketMessages.Inbound;
///
/// Sessions start message.
///
public class SessionsStartMessage : WebSocketMessage, IInboundWebSocketMessage
{
///
/// Initializes a new instance of the class.
///
/// Session info.
public SessionsStartMessage(SessionInfo data)
: base(data)
{
}
///
[DefaultValue(SessionMessageType.SessionsStart)]
public override SessionMessageType MessageType => SessionMessageType.SessionsStart;
}