radfusion/app/Services/ACL/WorklistButton.php
2025-01-21 12:28:48 +06:00

15 lines
279 B
PHP

<?php
namespace App\Services\ACL;
enum WorklistButton: string
{
case StudyMetadata = 'metadata';
case History = 'history';
case Notes = 'notes';
case Attachment = 'attachment';
case Assign = 'assign';
case Report = 'report';
case Audit = 'audit';
}