/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.dhaval.appstats.model;

import java.util.List;
import java.util.Map;

/**
 *
 * @author dhaval
 */
public class LocationQueryResult {

    private List<Map<String, Object>> locations;

    public LocationQueryResult(List<Map<String, Object>> locations) {
        this.locations = locations;
    }

    public List<Map<String, Object>> getLocations() {
        return locations;
    }

    
}
