/*
 * 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 ApplicationQueryResult {

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

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

    public List<Map<String, Object>> getApplication() {
        return application;
    }

    
}
