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