package org.onap.ransim.rest.web.mapper; import java.util.List; /** * Request Mapper Class for BulkUpoad * * @author Devendra Chauhan * */ public class CellInputPayload { List cellList; public List getCellList() { return cellList; } public void setCellList(List cellList) { this.cellList = cellList; } }