mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			432 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			432 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
 | 
						|
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; }
 | 
						|
    }
 | 
						|
}
 |