21 lines
327 B
Java
21 lines
327 B
Java
package com.alttd.commandManager;
|
|
|
|
public class ScopeInfo {
|
|
|
|
CommandScope scope;
|
|
long id;
|
|
|
|
public ScopeInfo(CommandScope scope, long id) {
|
|
this.scope = scope;
|
|
this.id = id;
|
|
}
|
|
|
|
public CommandScope getScope() {
|
|
return scope;
|
|
}
|
|
|
|
public long getId() {
|
|
return id;
|
|
}
|
|
}
|