com.salesmanager.shop.model.system.IntegrationModuleEntity 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.system;
public class IntegrationModuleEntity {
private String code;
private boolean active;
private boolean configured;
private String image;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public boolean isActive() {
return active;
}
public void setActive(boolean active) {
this.active = active;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public boolean isConfigured() {
return configured;
}
public void setConfigured(boolean configured) {
this.configured = configured;
}
}