summaryrefslogtreecommitdiff
path: root/com/nemez/cmdmgr/util/HelpPageCommand.java
blob: a3ee138b23943a8149abb69e1147b3328553fd2c (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;
		this.description = description;
		this.method = method;
		this.type = type;
	}
}