14 lines
253 B
PHP
14 lines
253 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';
|
|
}
|