export default class Account { constructor(_id, _mail) { this.id = _id; this.email = _mail; this.fetched = false; } }