using MediaBrowser.Model.Entities; using System; namespace MediaBrowser.Model.Dto { /// /// Class ItemsByNameQuery /// public class ItemsByNameQuery { /// /// Gets or sets the user id. /// /// The user id. public Guid 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? PageSize { 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; } /// /// If specified the search will be localized within a specific item or folder /// /// The item id. public string ItemId { 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; } } }