Files
crewli/api/app/Enums/PersonStatus.php
2026-04-14 19:04:10 +02:00

16 lines
269 B
PHP

<?php
declare(strict_types=1);
namespace App\Enums;
enum PersonStatus: string
{
case INVITED = 'invited';
case APPLIED = 'applied';
case PENDING = 'pending';
case APPROVED = 'approved';
case REJECTED = 'rejected';
case NO_SHOW = 'no_show';
}