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