com.aeontronix.enhancedmule.tools.cloudhub.CHPlan Maven / Gradle / Ivy
/*
* Copyright (c) Aeontronix 2019
*/
package com.aeontronix.enhancedmule.tools.cloudhub;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class CHPlan {
private List workerTypes;
@JsonProperty
public List getWorkerTypes() {
return workerTypes;
}
public void setWorkerTypes(List workerTypes) {
this.workerTypes = workerTypes;
}
}