export default class StudentAccount { constructor(obj) { Object.keys(obj).map((key) => this[key] = obj[key]); } }