export class Employee { name !: string; city !: string; salary !: number; constructor(name: string, city: string, salary: number) { this.name = name; this.city = city; this.salary = salary; } }