com.hframe.test.Content Maven / Gradle / Ivy
The newest version!
package com.hframe.test;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class Content {
@JsonProperty("news_item")
private List newsItemList;
public Content() {
}
public List getNewsItemList(){
return newsItemList;
}
public void setNewsItemList(List newsItemList){
this.newsItemList = newsItemList;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy