namespace MediaBrowser.Model.Session
{
///
/// Class BrowseRequest
///
public class BrowseRequest
{
///
/// Artist, Genre, Studio, Person, or any kind of BaseItem
///
/// The type of the item.
public string ItemType { get; set; }
///
/// Gets or sets the item id.
///
/// The item id.
public string ItemId { get; set; }
///
/// Gets or sets the name of the item.
///
/// The name of the item.
public string ItemName { get; set; }
///
/// Gets or sets the context (Movies, Music, Tv, etc)
/// Applicable to genres, studios and persons only because the context of items and artists can be inferred.
/// This is optional to supply and clients are free to ignore it.
///
/// The context.
public string Context { get; set; }
}
public class ItemContext
{
public const string Music = "Music";
public const string Movies = "Movies";
public const string TvShows = "TvShows";
public const string Games = "Games";
}
}