aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/BrowseRequest.cs
blob: abb3a30abf079f29fcee8d8f4a0c52b9e991a4a7 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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; }
        
        /// <summary>
        /// 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.
        /// </summary>
        /// <value>The context.</value>
        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";
    }
}