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

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

There is a newer version: 4.0.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy