jellyfin/MediaBrowser.Controller/Entities/IHiddenFromDisplay.cs

13 lines
400 B
C#
Raw Normal View History

2016-03-27 23:11:27 +02:00
namespace MediaBrowser.Controller.Entities
2015-11-11 15:56:31 +01:00
{
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);
}
}