radfusion/app/Services/ACL/WorklistButton.php
2025-01-25 23:53:35 +06:00

16 lines
311 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';
case Bookmark = 'bookmark';
}