BrowseRequest.cs 709 B

1234567891011121314151617181920212223242526
  1. namespace MediaBrowser.Model.Session
  2. {
  3. /// <summary>
  4. /// Class BrowseRequest
  5. /// </summary>
  6. public class BrowseRequest
  7. {
  8. /// <summary>
  9. /// Artist, Genre, Studio, Person, or any kind of BaseItem
  10. /// </summary>
  11. /// <value>The type of the item.</value>
  12. public string ItemType { get; set; }
  13. /// <summary>
  14. /// Gets or sets the item id.
  15. /// </summary>
  16. /// <value>The item id.</value>
  17. public string ItemId { get; set; }
  18. /// <summary>
  19. /// Gets or sets the name of the item.
  20. /// </summary>
  21. /// <value>The name of the item.</value>
  22. public string ItemName { get; set; }
  23. }
  24. }