com.github.cukedoctor.api.model.Match Maven / Gradle / Ivy
package com.github.cukedoctor.api.model;
import java.util.List;
public class Match {
private String location;
private List arguments;
public Match() {
}
public Match(String location) {
this.location = location;
}
public List getArguments() {
return arguments;
}
public String getLocation() {
return location;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy