mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			400 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			400 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace MediaBrowser.Controller.Entities
 | 
						|
{
 | 
						|
    public interface IHiddenFromDisplay
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Determines whether the specified user is hidden.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="user">The user.</param>
 | 
						|
        /// <returns><c>true</c> if the specified user is hidden; otherwise, <c>false</c>.</returns>
 | 
						|
        bool IsHiddenFromUser(User user);
 | 
						|
    }
 | 
						|
}
 |