16 lines
270 B
PHP
16 lines
270 B
PHP
<?php
|
|
|
|
namespace App\Domain\Study;
|
|
|
|
use App\Models\Traits\BitmaskFunctionality;
|
|
|
|
enum StudyAccessFlags: int
|
|
{
|
|
use BitmaskFunctionality;
|
|
|
|
case Forbidden = 0;
|
|
case ViewPatientDemographics = 1 << 1;
|
|
case ViewDicom = 1 << 2;
|
|
case ViewReports = 1 << 3;
|
|
}
|