class Person {
  name;
  age;
  constructor(properties) {
    Object.assign(this, properties);
  }
}