Blame | Last modification | View Log | RSS feed
package com.hotspotstore.model;import java.util.List;public class Snippet{private String snippet;private List<Long> entities;public List<Long> getEntities() {return entities;}public void setEntities(List<Long> entities) {this.entities = entities;}public String getSnippet() {return snippet;}public void setSnippet(String snippet) {this.snippet = snippet;}}