namespace MediaBrowser.Model.Net { /// /// Class WebSocketMessage /// /// public class WebSocketMessage { /// /// Gets or sets the type of the message. /// /// The type of the message. public string MessageType { get; set; } public string MessageId { get; set; } public string ServerId { get; set; } /// /// Gets or sets the data. /// /// The data. public T Data { get; set; } } }