package be.mentoringsystems.merke.model; /** * * @author anthonyarents */ public class Sorting { private String property; private String direction; public String getDirection() { return direction; } public void setDirection(final String direction) { this.direction = direction; } public String getProperty() { return property; } public void setProperty(final String property) { this.property = property; } }