17 lines
365 B
Java
17 lines
365 B
Java
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;
|
|
}
|
|
}
|