0
This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
CommandManager/com/nemez/cmdmgr/util/HelpPageCommand.java
2016-08-06 18:32:20 +02:00

19 lines
415 B
Java

package com.nemez.cmdmgr.util;
public class HelpPageCommand {
public String permission;
public String usage;
public String description;
public String method;
public Type type;
public HelpPageCommand(String perm, String usage, String description, String method, Type type) {
this.permission = perm;
this.usage = usage;
this.description = description;
this.method = method;
this.type = type;
}
}