PageIndex.java

package eu.wuttke.comdirect.value;

public class PageIndex {

    private int index;
    private int matches;

    public int getIndex() {
        return index;
    }

    public int getMatches() {
        return matches;
    }

    public void setIndex(int index) {
        this.index = index;
    }

    public void setMatches(int matches) {
        this.matches = matches;
    }

}