PersonKind.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. namespace Jellyfin.Data.Enums;
  2. /// <summary>
  3. /// The person kind.
  4. /// </summary>
  5. public enum PersonKind
  6. {
  7. /// <summary>
  8. /// An unknown person kind.
  9. /// </summary>
  10. Unknown,
  11. /// <summary>
  12. /// A person whose profession is acting on the stage, in films, or on television.
  13. /// </summary>
  14. Actor,
  15. /// <summary>
  16. /// A person who supervises the actors and other staff in a film, play, or similar production.
  17. /// </summary>
  18. Director,
  19. /// <summary>
  20. /// A person who writes music, especially as a professional occupation.
  21. /// </summary>
  22. Composer,
  23. /// <summary>
  24. /// 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.
  25. /// </summary>
  26. Writer,
  27. /// <summary>
  28. /// A well-known actor or other performer who appears in a work in which they do not have a regular role.
  29. /// </summary>
  30. GuestStar,
  31. /// <summary>
  32. /// A person responsible for the financial and managerial aspects of the making of a film or broadcast or for staging a play, opera, etc.
  33. /// </summary>
  34. Producer,
  35. /// <summary>
  36. /// A person who directs the performance of an orchestra or choir.
  37. /// </summary>
  38. Conductor,
  39. /// <summary>
  40. /// A person who writes the words to a song or musical.
  41. /// </summary>
  42. Lyricist,
  43. /// <summary>
  44. /// A person who adapts a musical composition for performance.
  45. /// </summary>
  46. Arranger,
  47. /// <summary>
  48. /// An audio engineer who performed a general engineering role.
  49. /// </summary>
  50. Engineer,
  51. /// <summary>
  52. /// An engineer responsible for using a mixing console to mix a recorded track into a single piece of music suitable for release.
  53. /// </summary>
  54. Mixer,
  55. /// <summary>
  56. /// A person who remixed a recording by taking one or more other tracks, substantially altering them and mixing them together with other material.
  57. /// </summary>
  58. Remixer,
  59. /// <summary>
  60. /// A person who created the material.
  61. /// </summary>
  62. Creator,
  63. /// <summary>
  64. /// A person who was the artist.
  65. /// </summary>
  66. Artist,
  67. /// <summary>
  68. /// A person who was the album artist.
  69. /// </summary>
  70. AlbumArtist,
  71. /// <summary>
  72. /// A person who was the author.
  73. /// </summary>
  74. Author,
  75. /// <summary>
  76. /// A person who was the illustrator.
  77. /// </summary>
  78. Illustrator,
  79. /// <summary>
  80. /// A person responsible for drawing the art.
  81. /// </summary>
  82. Penciller,
  83. /// <summary>
  84. /// A person responsible for inking the pencil art.
  85. /// </summary>
  86. Inker,
  87. /// <summary>
  88. /// A person responsible for applying color to drawings.
  89. /// </summary>
  90. Colorist,
  91. /// <summary>
  92. /// A person responsible for drawing text and speech bubbles.
  93. /// </summary>
  94. Letterer,
  95. /// <summary>
  96. /// A person responsible for drawing the cover art.
  97. /// </summary>
  98. CoverArtist,
  99. /// <summary>
  100. /// A person contributing to a resource by revising or elucidating the content, e.g., adding an introduction, notes, or other critical matter.
  101. /// An editor may also prepare a resource for production, publication, or distribution.
  102. /// </summary>
  103. Editor,
  104. /// <summary>
  105. /// A person who renders a text from one language into another.
  106. /// </summary>
  107. Translator
  108. }