jellyfin/MediaBrowser.Controller/Net/WebSocketMessageInfo.cs

17 lines
412 B
C#
Raw Normal View History

using MediaBrowser.Model.Net;
2018-12-28 00:27:57 +01:00
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; }
}
}