CustomerAttributes.java

19 lines | 374 B Blame History Raw Download
package com.salesmanager.shop.admin.model.customer.attribute;

import java.util.List;


public class CustomerAttributes {
	
	private List<CustomerOption> customerOptions;

	public List<CustomerOption> getCustomerOptions() {
		return customerOptions;
	}

	public void setCustomerOptions(List<CustomerOption> customerOptions) {
		this.customerOptions = customerOptions;
	}

}