OrderAttribute.java

21 lines | 331 B Blame History Raw Download
package com.salesmanager.shop.model.order;

public class OrderAttribute {
	
	private String key;
	private String value;
	public String getKey() {
		return key;
	}
	public void setKey(String key) {
		this.key = key;
	}
	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}

}