All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.leancloud.LCStatisticResult Maven / Gradle / Ivy

package cn.leancloud;

import java.util.ArrayList;
import java.util.List;

public class LCStatisticResult {
    private List results = new ArrayList<>();

    /**
     * getter
     * @return statistic list.
     */
    public List getResults() {
        return results;
    }

    /**
     * setter
     * @param results statistic list.
     */
    public void setResults(List results) {
        this.results = results;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy