src/app/hospitals/hospital.ts
Properties |
| district |
district:
|
Type : string
|
|
Defined in src/app/hospitals/hospital.ts:6
|
| id |
id:
|
Type : number
|
|
Defined in src/app/hospitals/hospital.ts:2
|
| landmark |
landmark:
|
Type : string
|
|
Defined in src/app/hospitals/hospital.ts:5
|
| name |
name:
|
Type : string
|
|
Defined in src/app/hospitals/hospital.ts:3
|
| place |
place:
|
Type : string
|
|
Defined in src/app/hospitals/hospital.ts:4
|
| postalCode |
postalCode:
|
Type : string
|
|
Defined in src/app/hospitals/hospital.ts:8
|
| state |
state:
|
Type : string
|
|
Defined in src/app/hospitals/hospital.ts:7
|
export class Hospital {
id: number;
name: string;
place: string;
landmark: string;
district: string;
state: string;
postalCode: string;
}