move web socket classes to server project

This commit is contained in:
Luke Pulverenti
2014-12-27 13:06:32 -05:00
parent 52caa0def1
commit 0840bb9ba2
27 changed files with 35 additions and 19 deletions

View File

@@ -0,0 +1,21 @@
using System;
namespace MediaBrowser.Controller.Net
{
/// <summary>
/// Class WebSocketConnectEventArgs
/// </summary>
public class WebSocketConnectEventArgs : EventArgs
{
/// <summary>
/// Gets or sets the web socket.
/// </summary>
/// <value>The web socket.</value>
public IWebSocket WebSocket { get; set; }
/// <summary>
/// Gets or sets the endpoint.
/// </summary>
/// <value>The endpoint.</value>
public string Endpoint { get; set; }
}
}