#nullable disable
namespace MediaBrowser.Model.Session
{
    /// 
    /// Class BrowseRequest.
    /// 
    public class BrowseRequest
    {
        /// 
        /// Gets or sets the item type.
        /// 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; }
    }
}