From 61dfdc900dd508312777639b7811327093cba840 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 28 May 2013 11:05:56 -0400 Subject: [PATCH] bring BrowseRequest up to speed --- MediaBrowser.Model/Session/BrowseRequest.cs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/MediaBrowser.Model/Session/BrowseRequest.cs b/MediaBrowser.Model/Session/BrowseRequest.cs index 3d10b3bfd7..abb3a30abf 100644 --- a/MediaBrowser.Model/Session/BrowseRequest.cs +++ b/MediaBrowser.Model/Session/BrowseRequest.cs @@ -13,11 +13,17 @@ namespace MediaBrowser.Model.Session public string ItemType { get; set; } /// - /// Artist name, genre name, item Id, etc + /// Gets or sets the item id. /// - /// The item identifier. - public string ItemIdentifier { get; set; } + /// 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.