﻿// requires Prototype

var NewLocationData = Class.create({
    initialize: function() {
        this.locKey = null;
        this.lat = null;
        this.lng = null;
        this.locName = null;
    }
});

