Moved match/* to response/match/*
diff --git a/src/main/java/de/ids_mannheim/korap/response/match/Relation.java b/src/main/java/de/ids_mannheim/korap/response/match/Relation.java
new file mode 100644
index 0000000..1587ed3
--- /dev/null
+++ b/src/main/java/de/ids_mannheim/korap/response/match/Relation.java
@@ -0,0 +1,13 @@
+package de.ids_mannheim.korap.response.match;
+
+/**
+ * Class for relational highlights.
+ */   
+public class Relation {
+    public int ref;
+    public String annotation;
+    public Relation (String annotation, int ref) {
+        this.annotation = annotation;
+        this.ref = ref;
+    };
+};