26 lines
714 B
PHP
26 lines
714 B
PHP
<?php
|
|
|
|
namespace App\Services\Pacs;
|
|
|
|
enum DicomModalities: string
|
|
{
|
|
case CT = 'CT'; // Computed Tomography
|
|
case MR = 'MR'; // Magnetic Resonance
|
|
case CR = 'CR'; // Computed Radiography
|
|
case DX = 'DX'; // Digital Radiography
|
|
case MG = 'MG'; // Mammography
|
|
case US = 'US'; // Ultrasound
|
|
case XA = 'XA'; // X-ray Angiography
|
|
case OPG = 'OPG'; // Orthopantomogram
|
|
case ECG = 'ECG'; // Electrocardiography
|
|
|
|
/*
|
|
case CBCT = 'CBCT'; // Cone Beam Computed Tomography
|
|
case NM = 'NM'; // Nuclear Medicine
|
|
case PT = 'PT'; // Positron Emission Tomography
|
|
case RF = 'RF'; // Radio Fluoroscopy
|
|
case SC = 'SC'; // Secondary Capture
|
|
case OT = 'OT'; // Other
|
|
*/
|
|
}
|