src/app/doctors/doctors.ts
Properties |
| hospital |
hospital:
|
Type : string
|
|
Defined in src/app/doctors/doctors.ts:6
|
| id |
id:
|
Type : number
|
|
Defined in src/app/doctors/doctors.ts:2
|
| name |
name:
|
Type : string
|
|
Defined in src/app/doctors/doctors.ts:3
|
| place |
place:
|
Type : string
|
|
Defined in src/app/doctors/doctors.ts:4
|
| qualification |
qualification:
|
Type : string
|
|
Defined in src/app/doctors/doctors.ts:5
|
| year_of_experience |
year_of_experience:
|
Type : number
|
|
Defined in src/app/doctors/doctors.ts:7
|
export class Doctors {
id: number;
name: string;
place: string;
qualification: string;
hospital: string;
year_of_experience: number;
}