4034670ceb1275da29f4d9cc30ea6e36885580c5
[sixth.git] / src / main / java / eu / svjatoslav / sixth / core / document / content / PropertyCollection.java
1 package eu.svjatoslav.sixth.core.document.content;
2
3 import java.util.HashMap;
4 import java.util.Map;
5
6 public class PropertyCollection implements Content {
7
8     private Map<String, String> propertyToValue = new HashMap<>();
9
10     @Override
11     public void toMD(StringBuilder sb, int indent) {
12         // TODO
13     }
14 }