mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
9 lines
148 B
PHP
9 lines
148 B
PHP
<?
|
|
namespace Enums;
|
|
|
|
enum MarcRole: string{
|
|
case Author = 'aut';
|
|
case Contributor = 'ctb';
|
|
case Illustrator = 'ill';
|
|
case Translator = 'trl';
|
|
}
|