This commit is contained in:
Masroor Ehsan 2025-01-01 20:05:42 +06:00
parent 4833cf9225
commit fb9c5dfecf

View File

@ -6,10 +6,11 @@ enum UserRole: string
{ {
case Guest = 'guest'; case Guest = 'guest';
case Patient = 'patient'; case Patient = 'patient';
case ReferringPhysician = 'referring_physician'; case ReferringDoctor = 'referring_doctor';
case Technician = 'technician'; case Technician = 'technician';
case Radiologist = 'radiologist'; case Radiologist = 'radiologist';
case Associate = 'associate'; case Associate = 'associate';
case SystemAgent = 'system_agent'; case SystemAgent = 'system_agent';
case SiteAdmin = 'site_admin';
case Admin = 'admin'; case Admin = 'admin';
} }