First Commit
This commit is contained in:
16
com/nemez/cmdmgr/util/HelpPageCommand.java
Normal file
16
com/nemez/cmdmgr/util/HelpPageCommand.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package com.nemez.cmdmgr.util;
|
||||
|
||||
public class HelpPageCommand {
|
||||
|
||||
public String permission;
|
||||
public String usage;
|
||||
public String description;
|
||||
public String method;
|
||||
|
||||
public HelpPageCommand(String perm, String usage, String description, String method) {
|
||||
this.permission = perm;
|
||||
this.usage = usage;
|
||||
this.description = description;
|
||||
this.method = method;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user