mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 06:40:33 -04:00
6 lines
124 B
PHP
6 lines
124 B
PHP
<?
|
|
enum ArtworkStatus: string{
|
|
case Unverified = 'unverified';
|
|
case Declined = 'declined';
|
|
case Approved = 'approved';
|
|
}
|