web/lib/ArtworkStatus.php
2024-01-14 22:32:47 -06:00

7 lines
148 B
PHP

<?
enum ArtworkStatus: string{
case Unverified = 'unverified';
case Declined = 'declined';
case Approved = 'approved';
case InUse = 'in_use';
}