blob: 2d986b7b347970d7834067748b261a527a1c80bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#nullable disable
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; }
}
}
|