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

com.textrazor.dictionary.model.PagedAllEntries Maven / Gradle / Ivy

package com.textrazor.dictionary.model;

import java.util.List;

public class PagedAllEntries {
	
	int total;
	
	int limit;
	
	int offset;
	
	List entries;

	public int getTotal() {
		return total;
	}

	public int getLimit() {
		return limit;
	}

	public int getOffset() {
		return offset;
	}

	public List getEntries() {
		return entries;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy