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