src/app/visits/visit.ts
Properties |
| date |
date:
|
Type : string
|
| description |
description:
|
Type : string
|
| id |
id:
|
Type : number
|
| pet |
pet:
|
Type : Pet
|
import {Pet} from '../pets/pet';
export interface Visit {
id: number;
date: string;
description: string;
pet: Pet;
}