2018-12-27 16:27:57 -07:00
|
|
|
namespace MediaBrowser.Model.Session
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// Class BrowseRequest.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
public class BrowseRequest
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-03 17:49:27 -07:00
|
|
|
/// Artist, Genre, Studio, Person, or any kind of BaseItem.
|
2018-12-27 16:27:57 -07:00
|
|
|
/// </summary>
|
|
|
|
/// <value>The type of the item.</value>
|
|
|
|
public string ItemType { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the item id.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The item id.</value>
|
|
|
|
public string ItemId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name of the item.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name of the item.</value>
|
|
|
|
public string ItemName { get; set; }
|
|
|
|
}
|
2019-01-13 12:31:15 -07:00
|
|
|
}
|