namespace API.Entities.Enums;
public enum PersonRole
{
///
/// Another role, not covered by other types
///
Other = 1,
///
/// Author or Writer
///
Writer = 3,
Penciller = 4,
Inker = 5,
Colorist = 6,
Letterer = 7,
CoverArtist = 8,
Editor = 9,
Publisher = 10,
///
/// Represents a character/person within the story
///
Character = 11,
///
/// The Translator
///
Translator = 12,
///
/// The publisher before another Publisher bought
///
Imprint = 13,
Team = 14,
Location = 15
}