blob: 5bf39cae6dbd50a1e206520bf0d043ae0725acd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using MediaBrowser.Model.Net;
namespace MediaBrowser.Controller.Net
{
/// <summary>
/// Class WebSocketMessageInfo
/// </summary>
public class WebSocketMessageInfo : WebSocketMessage<string>
{
/// <summary>
/// Gets or sets the connection.
/// </summary>
/// <value>The connection.</value>
public IWebSocketConnection Connection { get; set; }
}
}
|