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