Rev 9220 | Blame | Compare with Previous | Last modification | View Log | RSS feed
package in.shop2020.mobileapi.serving.pojos;import java.util.List;public class SpecificationGroup {public SpecificationGroup(String title, List<Specification> specs) {super();this.title = title;this.specs = specs;}private String title;private List<Specification> specs;public void setTitle(String title) {this.title = title;}public String getTitle() {return title;}public void setSpecs(List<Specification> specs) {this.specs = specs;}public List<Specification> getSpecs() {return specs;}}