src/app/vets/vet.ts
Properties |
| firstName |
firstName:
|
Type : string
|
| id |
id:
|
Type : number
|
| lastName |
lastName:
|
Type : string
|
| specialties |
specialties:
|
Type : Specialty[]
|
import {Specialty} from '../specialties/specialty';
export interface Vet {
id: number;
firstName: string;
lastName: string;
specialties: Specialty[];
}