radfusion/app/Domain/Study/StudyLevelStatus.php
2025-01-07 16:54:38 +06:00

12 lines
185 B
PHP

<?php
namespace App\Domain\Study;
enum StudyLevelStatus: int
{
case Pending = 0;
case StudyArrived = 1 << 1;
case StudyLocked = 1 << 2;
case StudyUnlocked = 1 << 3;
}