// ── Doctor option collected from hospitals (for "Select Doctor" list) ──
export interface DoctorOption {
  id: string;
  name: string;
  hospitalName: string;
}

// ── Patient info sent to patient-queue/add ──
export interface PatientQueueInfo {
  patient_visit_date: string;
  patient_name: string;
  patient_age: string;
  patient_age_in_years: number;
  patient_weight: string;
  patient_bp: string;
  patient_pulse: string;
  patient_spo2: string;
  patient_temp: string;
  patient_mobile: string;
  patient_gender: number; // -1 Default, 0 Male, 1 Female, 2 Rather not to say
}

export interface AddPatientQueuePayload {
  patient_info: PatientQueueInfo;
  doctorId: string;
}