aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Library/UserViewQuery.cs
blob: 3915d76449fb7adedcf1c0f224d54fec62f44207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
namespace MediaBrowser.Model.Library
{
    public class UserViewQuery
    {
        /// <summary>
        /// Gets or sets the user identifier.
        /// </summary>
        /// <value>The user identifier.</value>
        public string UserId { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether [include external content].
        /// </summary>
        /// <value><c>true</c> if [include external content]; otherwise, <c>false</c>.</value>
        public bool IncludeExternalContent { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether [include hidden].
        /// </summary>
        /// <value><c>true</c> if [include hidden]; otherwise, <c>false</c>.</value>
        public bool IncludeHidden { get; set; }

        public string[] PresetViews { get; set; }

        public UserViewQuery()
        {
            IncludeExternalContent = true;
            PresetViews = new string[] { };
        }
    }
}