#pragma warning disable CS1591
using System;
namespace MediaBrowser.Model.Library
{
    public class UserViewQuery
    {
        /// 
        /// Gets or sets the user identifier.
        /// 
        /// The user identifier.
        public Guid UserId { get; set; }
        /// 
        /// Gets or sets a value indicating whether [include external content].
        /// 
        /// true if [include external content]; otherwise, false.
        public bool IncludeExternalContent { get; set; }
        /// 
        /// Gets or sets a value indicating whether [include hidden].
        /// 
        /// true if [include hidden]; otherwise, false.
        public bool IncludeHidden { get; set; }
        public string[] PresetViews { get; set; }
        public UserViewQuery()
        {
            IncludeExternalContent = true;
            PresetViews = Array.Empty();
        }
    }
}