namespace API.Entities.Enums { public enum PersonRole { /// /// Another role, not covered by other types /// Other = 0, /// /// Author /// Author = 1, /// /// Artist /// Artist = 2, } }