mirror of
https://github.com/plexusorg/Plex.git
synced 2024-11-17 09:06:12 +00:00
14 lines
397 B
Java
14 lines
397 B
Java
package dev.plex.command.annotation;
|
|
|
|
import dev.plex.command.source.RequiredCommandSource;
|
|
import dev.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() default RequiredCommandSource.ANY;
|
|
} |