namespace API.Entities.Enums
{
public enum PersonRole
{
///
/// Another role, not covered by other types
///
Other = 1,
///
/// Artist
///
//Artist = 2,
///
/// 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
}
}