Plex/src/main/java/me/totalfreedom/plex/command/CommandPermissions.java

13 lines
322 B
Java
Raw Normal View History

2020-10-31 04:58:12 +00:00
package me.totalfreedom.plex.command;
2020-10-31 04:51:22 +00:00
import me.totalfreedom.plex.rank.enums.Rank;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface CommandPermissions
{
Rank level() default Rank.IMPOSTOR;
RequiredCommandSource source();
}