io.github.factoryfx.dom.rest.GuiConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of domFactoryEditing Show documentation
Show all versions of domFactoryEditing Show documentation
factoryfx dependency injection framework
package io.github.factoryfx.dom.rest;
import java.util.List;
public class GuiConfiguration {
public final String projectName;
public final List navBarItems;
public GuiConfiguration(String projectName, List navBarItems) {
this.projectName = projectName;
this.navBarItems = navBarItems;
}
}