/** Airport data object
 */	

function Airport(id, name, code) {
	this.id = id;
	this.name = name;
	this.code = code;
}


/** Gets the id of the airport
 */
 
Airport.prototype.getId = function() {
	return this.id;
}


/** Gets the name of the airport
 */
 
Airport.prototype.getName = function() {
	return this.name;
}


/** Gets the code of the airport
 */
 
Airport.prototype.getCode = function() {
	return this.code;
}


