/**
 * @class company
 * @author Ovi Roatis
 * 
 */
 
 function company()
{
	//company id
	this.id=0;
	//company name
	this.name="";
	//date company joined
	this.date="";
	//company's total number of employees
	this.employeeNumber=0;
	//total steps
	this.totalSteps="";	
	//address1
	this.address1="";
	//address2
	this.address2="";
	//city
	this.city="";
	//state
	this.state="";
	//zip
	this.zip="";
	//total distance
	this.totalDistance=0;
	//total duration
	this.totalDuration=0;
	//average
	this.average=0;
	//contact name
	this.contactName="";
	//contact email
	this.contactEmail = "";
	//contact phone
	this.contactPhone = "";
	//username
	this.username="";
	//hr access
	this.hrAccess = true;
	//status
	this.status = 0;
		
}
