package weiboclient4j.model;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import java.util.List;
/**
* @author Hover Ruan
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class PoiList {
private List<Poi> pois;
private int totalNumber;
public int getTotalNumber() {
return totalNumber;
}
public void setTotalNumber(int totalNumber) {
this.totalNumber = totalNumber;
}
public List<Poi> getPois() {
return pois;
}
public void setPois(List<Poi> pois) {
this.pois = pois;
}
}