pro.taskana.common.rest.models.VersionRepresentationModel Maven / Gradle / Ivy
package pro.taskana.common.rest.models;
import org.springframework.hateoas.RepresentationModel;
/** EntityModel class for version information. */
public class VersionRepresentationModel extends RepresentationModel {
private String version;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
@Override
public String toString() {
return "VersionResource [" + "version= " + this.version + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy