mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			554 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			554 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| #nullable disable
 | |
| using System;
 | |
| 
 | |
| 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 Guid 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; }
 | |
|     }
 | |
| }
 |