1 package cintoo.messages.bundle.xml;2 3 public class Property {4 private String key;5 private String value;6 7 public String getKey() {8 return key;9 }10 11 public void setKey(String key) {12 this.key = key;13 }14 15 public String getValue() {16 return value;17 }18 19 public void setValue(String value) {20 this.value = value;21 }22 }23