mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 11:07:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			524 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			524 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Model.Session
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class SessionUserInfo.
 | 
						|
    /// </summary>
 | 
						|
    public class SessionUserInfo
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the user identifier.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The user identifier.</value>
 | 
						|
        public string UserId { get; set; }
 | 
						|
        /// <summary>
 | 
						|
        /// Gets or sets the name of the user.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The name of the user.</value>
 | 
						|
        public string UserName { get; set; }
 | 
						|
    }
 | 
						|
} |