export interface ErxAddPatientPharmacyParams {
    /**
     * ID of the pharmacy to add for the patient.
     */
    pharmacyId: number;
    /**
     * Whether to set the added pharmacy as the patient's primary pharmacy.
     */
    setAsPrimary?: boolean;
    patientId: string;
}
