configs.cloud.client.entity.EnvWrapper Maven / Gradle / Ivy
package configs.cloud.client.entity;
import java.io.Serializable;
import java.util.Collection;
import java.util.List;
public class EnvWrapper implements Serializable{
private static final long serialVersionUID = 1L;
private List env;
public List getEnv() {
return env;
}
public void setEnv(List env) {
this.env = env;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy