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

com.salesmanager.shop.model.references.CountryEntity Maven / Gradle / Ivy

The newest version!
package com.salesmanager.shop.model.references;

import com.salesmanager.shop.model.entity.Entity;

public class CountryEntity extends Entity {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	private String code;
	private boolean supported;

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public boolean isSupported() {
		return supported;
	}

	public void setSupported(boolean supported) {
		this.supported = supported;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy