Rev 25427 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.web.res;import com.spice.profitmandi.dao.model.ContentPojo;import java.util.List;public class EntityResponse {private ContentPojo entity;private List<ContentPojo> entities;public ContentPojo getEntity() {return entity;}public void setEntity(ContentPojo entity) {this.entity = entity;}public List<ContentPojo> getEntities() {return entities;}public void setEntities(List<ContentPojo> entities) {this.entities = entities;}}