package kornell.core.to.report; public class EnrollmentsBreakdownTO { String name; Integer count; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } }