function DashFlyAddress() {

	this.address = '';
	this.mls_number = '';
	this.notes = [];
	this.actualAddress = '';
	this.latlng = null;
	this.marker = null;
	this.addressLabel = null;
	this.accuracy = 0;

	this.GetAddress = function(){
		return this.address;
	};

	this.SetAddress = function(add) {
		this.address = add;
	};

	this.GetMLS = function(){
		return this.mls_number;
	};

	this.SetMLS = function(mls) {
		this.mls_number = mls;
	};
	
	this.SetNotes = function(notes) {
		this.notes = notes;
	};
	
	this.GetNotes = function() {
		return this.notes;
	};
	
	this.SetActualAddress = function(add) {
		this.actualAddress = add;
	};
	
	this.GetActualAddress = function() {
		return this.actualAddress;
	};
	
	this.SetLatLng = function(latlng) {
		this.latlng = latlng;
	};
	
	this.GetLatLng = function() {
		return this.latlng;
	};

	this.SetMarker = function(marker) {
		this.marker = marker;
	};
	
	this.GetMarker = function() {
		return this.marker;
	};

	this.SetAddressLabel = function (addrLabel) {
		this.addressLabel = addrLabel;
	};

	this.GetAddressLabel = function () {
		return this.addressLabel;
	};

	this.SetAccuracy = function (accuracy) {
		this.accuracy = accuracy;
	};

	this.GetAccuracy = function () {
		return this.accuracy;
	};
}