mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-17 09:06:12 +00:00
13 lines
327 B
Java
13 lines
327 B
Java
|
package me.totalfreedom.plex.command.impl;
|
||
|
|
||
|
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();
|
||
|
}
|