package pm.j4.petroleum.util.config; /** * The type Option serializiable. */ public class OptionSerializiable { /** * Instantiates a new Option serializiable. * * @param type the type * @param value the value * @param key the key */ public OptionSerializiable(String type, String value, String key) { this.type = type; this.value = value; this.key = key; } /** * The Type. */ public final String type; /** * The Value. */ public final String value; /** * The Key. */ public final String key; }