//userStruct.js
//This javascript structure allows us to store information about the current user.

//Constructor
function UserStruct(email, password, id, name) {
	this.email = email;
	this.password = password;
	this.id = id;
	this.name = name;
}