All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.riversoft.weixin.mp.template.Data Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.riversoft.weixin.mp.template;

/**
 * Created by exizhai on 12/16/2015.
 */
public class Data {

    private String value;
    private String color;

    public Data() {
    }

    public Data(String value, String color) {
        this.value = value;
        this.color = color;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public String getColor() {
        return color;
    }

    public void setColor(String color) {
        this.color = color;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy