org.catools.atlassian.scale.model.CZScalePlanExecutions Maven / Gradle / Ivy
The newest version!
package org.catools.atlassian.scale.model;
import org.catools.common.collections.CSet;
import java.util.stream.Stream;
public class CZScalePlanExecutions extends CSet {
public CZScalePlanExecutions() {
}
public CZScalePlanExecutions(CZScalePlanExecution... c) {
super(c);
}
public CZScalePlanExecutions(Stream stream) {
super(stream);
}
public CZScalePlanExecutions(Iterable iterable) {
super(iterable);
}
}