namespace MediaBrowser.Model.Entities
{
    /// 
    /// Types of persons.
    /// 
    public static class PersonType
    {
        /// 
        /// A person whose profession is acting on the stage, in films, or on television.
        /// 
        public const string Actor = "Actor";
        /// 
        /// A person who supervises the actors and other staff in a film, play, or similar production.
        /// 
        public const string Director = "Director";
        /// 
        /// A person who writes music, especially as a professional occupation.
        /// 
        public const string Composer = "Composer";
        /// 
        /// 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.
        /// 
        public const string Writer = "Writer";
        /// 
        /// A well-known actor or other performer who appears in a work in which they do not have a regular role.
        /// 
        public const string GuestStar = "GuestStar";
        /// 
        /// A person responsible for the financial and managerial aspects of the making of a film or broadcast or for staging a play, opera, etc.
        /// 
        public const string Producer = "Producer";
        /// 
        /// A person who directs the performance of an orchestra or choir.
        /// 
        public const string Conductor = "Conductor";
        /// 
        /// A person who writes the words to a song or musical.
        /// 
        public const string Lyricist = "Lyricist";
        /// 
        /// A person who adapts a musical composition for performance.
        /// 
        public const string Arranger = "Arranger";
        /// 
        /// An audio engineer who performed a general engineering role.
        /// 
        public const string Engineer = "Engineer";
        /// 
        /// An engineer responsible for using a mixing console to mix a recorded track into a single piece of music suitable for release.
        /// 
        public const string Mixer = "Mixer";
        /// 
        /// A person who remixed a recording by taking one or more other tracks, substantially altering them and mixing them together with other material.
        /// 
        public const string Remixer = "Remixer";
    }
}