import enum # ─── Users ──────────────────────────────────────────────────────────────────── class RoleEnum(str, enum.Enum): admin = "admin" doctor = "doctor" staff = "staff" class SpecialtyEnum(str, enum.Enum): hemodynamics = "hemodynamics" electrophysiology = "electrophysiology" # ─── Procedure Types ────────────────────────────────────────────────────────── class GoalTypeEnum(str, enum.Enum): monthly = "monthly" yearly = "yearly" # ─── Procedures ─────────────────────────────────────────────────────────────── class GenderEnum(str, enum.Enum): male = "male" female = "female" class InternmentTypeEnum(str, enum.Enum): elective = "elective" hospitalized = "hospitalized" class AccessRouteEnum(str, enum.Enum): radial = "radial" femoral = "femoral" brachial = "brachial" class ComplicationEnum(str, enum.Enum): no_complications = "no_complications" vasovagal = "vasovagal" stroke = "stroke" allergy = "allergy" vascular = "vascular" hematoma = "hematoma" retroperitoneal_hematoma = "retroperitoneal_hematoma" bleeding = "bleeding" stent_thrombosis = "stent_thrombosis" death = "death" others = "others"