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

com.tmsps.ne4Weixin.api.entity.template.TemplateParam Maven / Gradle / Ivy

There is a newer version: 0.8.1
Show newest version
package com.tmsps.ne4Weixin.api.entity.template;

import com.tmsps.ne4Weixin.api.entity.BaseModel;

public class TemplateParam extends BaseModel {
	private String value;
	private String color;

	public TemplateParam(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