aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MetadataField.cs
blob: 2cc6c8e3362859d0c1114dc8e37f45231407d6ca (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
47
48
49
50
51
52
53
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Enum MetadataFields.
    /// </summary>
    public enum MetadataField
    {
        /// <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
    }
}