aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHiddenFromDisplay.cs
blob: ba6311296a1bac9bdaca5374c17f9ae1cbcb31be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
    }
}