com.salesmanager.shop.model.references.ReadableCountry 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.references;
import java.util.ArrayList;
import java.util.List;
public class ReadableCountry extends CountryEntity {
/**
*
*/
private static final long serialVersionUID = 1L;
private String name;
private List zones = new ArrayList();
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List getZones() {
return zones;
}
public void setZones(List zones) {
this.zones = zones;
}
}