kz.greetgo.conf.hot.LineStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.conf Show documentation
Show all versions of greetgo.conf Show documentation
Configuration library using in greetgo!
package kz.greetgo.conf.hot;
import java.util.List;
public class LineStructure {
public final List readElementList;
public final List configLineList;
public LineStructure(List readElementList, List configLineList) {
this.readElementList = readElementList;
this.configLineList = configLineList;
}
}