package com.mossle.api.keyvalue; public class Prop { private String code; private int type; private String value; public String getCode() { return code; } public void setCode(String code) { this.code = code; } public int getType() { return type; } public void setType(int type) { this.type = type; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } }