summaryrefslogtreecommitdiff
path: root/src/main/java/com/nemez/cmdmgr/util/HelpPageCommand.java
blob: 2229672b9bab7cabab25982ac69368e630ee45bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
	}
}