2019-01-13 20:01:16 +00:00
|
|
|
using MediaBrowser.Model.Net;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Class WebSocketMessageInfo.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public class WebSocketMessageInfo : WebSocketMessage<string>
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the connection.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The connection.</value>
|
|
|
|
public IWebSocketConnection Connection { get; set; }
|
|
|
|
}
|
2019-01-13 19:30:58 +00:00
|
|
|
}
|