tr.com.lucidcode.model.response.ResponseStockList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kite-framework Show documentation
Show all versions of kite-framework Show documentation
A Web Application Framework providing DRY use of rich UI components.
The newest version!
package tr.com.lucidcode.model.response;
import java.util.List;
import tr.com.lucidcode.model.BaseStock;
public class ResponseStockList {
private List stockList;
private Long rowCount;
public List getStockList() {
return stockList;
}
public void setStockList(List stockList) {
this.stockList = stockList;
}
public Long getRowCount() {
return rowCount;
}
public void setRowCount(Long rowCount) {
this.rowCount = rowCount;
}
}