io.github.yedaxia.apidocs.parser.MockNode Maven / Gradle / Ivy
package io.github.yedaxia.apidocs.parser;
/**
* mock node
* @author yeguozhong yedaxia.github.com
*/
public class MockNode {
private String limit;
private String value;
public String getLimit() {
return limit;
}
public void setLimit(String limit) {
this.limit = limit;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy