Use regular expression tokenizer. WIP
[sixth.git] / src / main / java / eu / svjatoslav / sixth / core / document / content / PropertyCollection.java
diff --git a/src/main/java/eu/svjatoslav/sixth/core/document/content/PropertyCollection.java b/src/main/java/eu/svjatoslav/sixth/core/document/content/PropertyCollection.java
new file mode 100644 (file)
index 0000000..f3840b4
--- /dev/null
@@ -0,0 +1,10 @@
+package eu.svjatoslav.sixth.core.document.content;
+
+import java.util.HashMap;
+import java.util.Map;
+
+public class PropertyCollection implements Content {
+
+    private Map<String, String> propertyToValue = new HashMap<>();
+
+}