Files
Khafid Prayoga 7f6e0cc1fd refactor(patient): rename PatientEntity to Patient and update related components
Update interface name from PatientEntity to Patient for better clarity and consistency. Modify all related components and models to use the new interface name. Also includes minor improvements to address handling in patient forms.
2025-10-10 15:36:55 +07:00

16 lines
309 B
TypeScript

export interface PersonRelative {
id: number
person_id?: number
relationship_code?: string
name?: string
address?: string
village_code?: string
gender_code?: string
phoneNumber?: string
education_code?: string
occupation_name?: string
occupation_code?: string
responsible?: boolean
}