aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/PersonType.cs
blob: b985507f0ce195f6bdfdebf5a66bf235f38f43c5 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Types of persons.
    /// </summary>
    public static class PersonType
    {
        /// <summary>
        /// A person whose profession is acting on the stage, in films, or on television.
        /// </summary>
        public const string Actor = "Actor";

        /// <summary>
        /// A person who supervises the actors and other staff in a film, play, or similar production.
        /// </summary>
        public const string Director = "Director";

        /// <summary>
        /// A person who writes music, especially as a professional occupation.
        /// </summary>
        public const string Composer = "Composer";

        /// <summary>
        /// A writer of a book, article, or document. Can also be used as a generic term for music writer if there is a lack of specificity.
        /// </summary>
        public const string Writer = "Writer";

        /// <summary>
        /// A well-known actor or other performer who appears in a work in which they do not have a regular role.
        /// </summary>
        public const string GuestStar = "GuestStar";

        /// <summary>
        /// A person responsible for the financial and managerial aspects of the making of a film or broadcast or for staging a play, opera, etc.
        /// </summary>
        public const string Producer = "Producer";

        /// <summary>
        /// A person who directs the performance of an orchestra or choir.
        /// </summary>
        public const string Conductor = "Conductor";

        /// <summary>
        /// A person who writes the words to a song or musical.
        /// </summary>
        public const string Lyricist = "Lyricist";

        /// <summary>
        /// A person who adapts a musical composition for performance.
        /// </summary>
        public const string Arranger = "Arranger";

        /// <summary>
        /// An audio engineer who performed a general engineering role.
        /// </summary>
        public const string Engineer = "Engineer";

        /// <summary>
        /// An engineer responsible for using a mixing console to mix a recorded track into a single piece of music suitable for release.
        /// </summary>
        public const string Mixer = "Mixer";

        /// <summary>
        /// A person who remixed a recording by taking one or more other tracks, substantially altering them and mixing them together with other material.
        /// </summary>
        public const string Remixer = "Remixer";
    }
}