function Member(b) {
    this.first = b['first'];
    this.last = b['last'];
    this.email = b['email'];
    this.role = b['role'];
    this.country = b['country'];
    this.state = b['state'];
    this.city = b['city'];
    this.zip = b['zip'];
    this.tel = b['tel'];
    this.newsletter = b['newsletter'];
    this.created = b['created'];
    this.date_last = b['date_last'];
}

