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.