2013-05-09 15:43:11 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Session
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class BrowseRequest
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BrowseRequest
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Artist, Genre, Studio, Person, or any kind of BaseItem
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the item.</value>
|
|
|
|
|
public string ItemType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-05-28 08:05:56 -07:00
|
|
|
|
/// Gets or sets the item id.
|
2013-05-09 15:43:11 -07:00
|
|
|
|
/// </summary>
|
2013-05-28 08:05:56 -07:00
|
|
|
|
/// <value>The item id.</value>
|
|
|
|
|
public string ItemId { get; set; }
|
2013-05-09 15:43:11 -07:00
|
|
|
|
|
2013-05-28 08:05:56 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name of the item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the item.</value>
|
|
|
|
|
public string ItemName { get; set; }
|
2013-05-09 15:43:11 -07:00
|
|
|
|
}
|
2014-03-13 02:18:32 -07:00
|
|
|
|
}
|