com.salesmanager.shop.model.customer.attribute.PersistableCustomerOptionValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
The newest version!
package com.salesmanager.shop.model.customer.attribute;
import java.io.Serializable;
import java.util.List;
public class PersistableCustomerOptionValue extends CustomerOptionValueEntity
implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private List descriptions;
public void setDescriptions(List descriptions) {
this.descriptions = descriptions;
}
public List getDescriptions() {
return descriptions;
}
}