export class City{ id:number; name:string; description:string; constructor(){ this.id = 1; this.name= 'City name'; this.description= 'City description'; } }