19 lines
459 B
Java
19 lines
459 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.replaceAll("<empty>", "");
|
|
this.description = description;
|
|
this.method = method;
|
|
this.type = type;
|
|
}
|
|
}
|