web/lib/Enums/MarcRole.php

9 lines
148 B
PHP

<?
namespace Enums;
enum MarcRole: string{
case Author = 'aut';
case Contributor = 'ctb';
case Illustrator = 'ill';
case Translator = 'trl';
}