/*global application */
/**
 * Constructor
 * @return Camper whose only preset value is as an omnivore.
 */
var Camper = function(){
    this.firstName = "";
    this.lastName = "";
    this.age = -1;
    this.gender = "";
    this.member = false;
    this.firstTime = false;
    this.smoker = false;
    this.food = application.Food.OMNIVORE;
    this.foodNotes = "";
    this.job = "";
    this.street = "";
    this.city = "";
    this.state = "";
    this.zip = "";
    this.email = "";
    this.phone = "";
};
