aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MetadataFields.cs
blob: 85f2da31e078e3b5cacc1ccaf98e414e8569c37f (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
44
45
46
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum MetadataFields
    /// </summary>
    public enum MetadataFields
    {
        /// <summary>
        /// The cast
        /// </summary>
        Cast,
        /// <summary>
        /// The genres
        /// </summary>
        Genres,
        /// <summary>
        /// The production locations
        /// </summary>
        ProductionLocations,
        /// <summary>
        /// The studios
        /// </summary>
        Studios,
        /// <summary>
        /// The tags
        /// </summary>
        Tags,
        /// <summary>
        /// The name
        /// </summary>
        Name,
        /// <summary>
        /// The overview
        /// </summary>
        Overview,
        /// <summary>
        /// The runtime
        /// </summary>
        Runtime,
        /// <summary>
        /// The official rating
        /// </summary>
        OfficialRating
    }
}