using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Querying
{
    /// 
    /// Class ItemsByNameQuery
    /// 
    public class ItemsByNameQuery
    {
        /// 
        /// Gets or sets the user id.
        /// 
        /// The user id.
        public string UserId { get; set; }
        /// 
        /// Gets or sets the start index.
        /// 
        /// The start index.
        public int? StartIndex { get; set; }
        /// 
        /// Gets or sets the size of the page.
        /// 
        /// The size of the page.
        public int? Limit { get; set; }
        /// 
        /// Gets or sets a value indicating whether this  is recursive.
        /// 
        /// true if recursive; otherwise, false.
        public bool Recursive { get; set; }
        /// 
        /// Gets or sets the sort order.
        /// 
        /// The sort order.
        public SortOrder? SortOrder { get; set; }
        /// 
        /// Gets or sets the parent id.
        /// 
        /// The parent id.
        public string ParentId { get; set; }
        /// 
        /// Fields to return within the items, in addition to basic information
        /// 
        /// The fields.
        public ItemFields[] Fields { get; set; }
        /// 
        /// Gets or sets the person types.
        /// 
        /// The person types.
        public string[] PersonTypes { get; set; }
    }
}