using System.Collections.Generic; using System.ComponentModel; using MediaBrowser.Controller.Session; using MediaBrowser.Model.Session; namespace MediaBrowser.Controller.Net.WebSocketMessages.Outbound; /// /// Sessions message. /// public class SessionsMessage : OutboundWebSocketMessage> { /// /// Initializes a new instance of the class. /// /// Session info. public SessionsMessage(IReadOnlyList data) : base(data) { } /// [DefaultValue(SessionMessageType.Sessions)] public override SessionMessageType MessageType => SessionMessageType.Sessions; }