Files
go-ohif-proxy/internal/api/models/doctor.go
2025-05-14 10:23:33 +07:00

9 lines
242 B
Go

package models
// DoctorDetails contains doctor-specific data
type DoctorDetails struct {
DoctorID string `json:"doctor_id"`
DoctorName string `json:"doctor_name"`
Type string `json:"type"` // "ref_doctor" or "expertise_doctor"
}