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

devutility.internal.models.BaseSearchResult Maven / Gradle / Ivy

There is a newer version: 1.3.8.1
Show newest version
package devutility.internal.models;

import java.util.List;

public class BaseSearchResult {
	private int count;
	private List data;

	public int getCount() {
		return count;
	}

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

	public List getData() {
		return data;
	}

	public void setData(List data) {
		this.data = data;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy