blob: 332f1642081089694367212a4f5e83d14b521d7d (
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; }
}
}
|