File

src/app/owners/owner.ts

Index

Properties

Properties

address
address: string
Type : string
city
city: string
Type : string
firstName
firstName: string
Type : string
id
id: number
Type : number
lastName
lastName: string
Type : string
pets
pets: Pet[]
Type : Pet[]
telephone
telephone: string
Type : string
import {Pet} from '../pets/pet';

export interface Owner {
  id: number;
  firstName: string;
  lastName: string;
  address: string;
  city: string;
  telephone: string;
  pets: Pet[];
}

result-matching ""

    No results matching ""