PersonType.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. namespace MediaBrowser.Model.Entities
  2. {
  3. /// <summary>
  4. /// Types of persons.
  5. /// </summary>
  6. public static class PersonType
  7. {
  8. /// <summary>
  9. /// A person whose profession is acting on the stage, in films, or on television.
  10. /// </summary>
  11. public const string Actor = "Actor";
  12. /// <summary>
  13. /// A person who supervises the actors and other staff in a film, play, or similar production.
  14. /// </summary>
  15. public const string Director = "Director";
  16. /// <summary>
  17. /// A person who writes music, especially as a professional occupation.
  18. /// </summary>
  19. public const string Composer = "Composer";
  20. /// <summary>
  21. /// 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.
  22. /// </summary>
  23. public const string Writer = "Writer";
  24. /// <summary>
  25. /// A well-known actor or other performer who appears in a work in which they do not have a regular role.
  26. /// </summary>
  27. public const string GuestStar = "GuestStar";
  28. /// <summary>
  29. /// A person responsible for the financial and managerial aspects of the making of a film or broadcast or for staging a play, opera, etc.
  30. /// </summary>
  31. public const string Producer = "Producer";
  32. /// <summary>
  33. /// A person who directs the performance of an orchestra or choir.
  34. /// </summary>
  35. public const string Conductor = "Conductor";
  36. /// <summary>
  37. /// A person who writes the words to a song or musical.
  38. /// </summary>
  39. public const string Lyricist = "Lyricist";
  40. /// <summary>
  41. /// A person who adapts a musical composition for performance.
  42. /// </summary>
  43. public const string Arranger = "Arranger";
  44. /// <summary>
  45. /// An audio engineer who performed a general engineering role.
  46. /// </summary>
  47. public const string Engineer = "Engineer";
  48. /// <summary>
  49. /// An engineer responsible for using a mixing console to mix a recorded track into a single piece of music suitable for release.
  50. /// </summary>
  51. public const string Mixer = "Mixer";
  52. /// <summary>
  53. /// A person who remixed a recording by taking one or more other tracks, substantially altering them and mixing them together with other material.
  54. /// </summary>
  55. public const string Remixer = "Remixer";
  56. }
  57. }