radfusion/app/Services/ACL/WorklistButton.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';
}