radfusion/app/Services/Pacs/DicomModalities.php
2025-01-20 15:26:25 +06:00

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
*/
}