15 lines
308 B
TypeScript
15 lines
308 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
|
|
}
|