class Employee { public string name; public string city; public Employee(string name, string city) { this.name = name; this.city = city; } }