package com.ciandt.techgallery.service.model.profile; public class RecomendationTo { private Boolean positive; private String comment; public Boolean getPositive() { return positive; } public void setPositive(Boolean positive) { this.positive = positive; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } }