AggKeyCount.java 557 Bytes
package com.yoho.search.models.aggregations;

public class AggKeyCount {

    private Integer key;
    private Long count;

    public AggKeyCount() {
    }

    public AggKeyCount(Integer key, long count) {
        this.key = key;
        this.count = count;
    }

    public Integer getKey() {
        return key;
    }

    public void setKey(Integer key) {
        this.key = key;
    }

    public Long getCount() {
        return count;
    }

    public void setCount(long count) {
        this.count = count;
    }
}