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

Br.API.Commands.CommandInfo Maven / Gradle / Ivy

package Br.API.Commands;

import java.util.ArrayList;
import java.util.List;

public class CommandInfo {

    private List SubCommandInfos = new ArrayList<>();
    private String CommandName;
    private CommandHelper.MainCommand Command;

    public List getSubCommandInfos() {
        return SubCommandInfos;
    }

    public String getCommandName() {
        return CommandName;
    }

    public void setCommandName(String CommandName) {
        this.CommandName = CommandName;
    }

    public CommandHelper.MainCommand getCommand() {
        return Command;
    }

    public void setCommand(CommandHelper.MainCommand Command) {
        this.Command = Command;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy