aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/BrowseRequest.cs
blob: 1c997d58462b0ec8b7d892b34f25ae9cecc59ce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#nullable disable
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>
        /// Gets or sets the item id.
        /// </summary>
        /// <value>The item id.</value>
        public string ItemId { get; set; }

        /// <summary>
        /// Gets or sets the name of the item.
        /// </summary>
        /// <value>The name of the item.</value>
        public string ItemName { get; set; }
    }
}