All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.factoryfx.dom.rest.GuiConfiguration Maven / Gradle / Ivy

package io.github.factoryfx.dom.rest;

import java.util.ArrayList;
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;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy