mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-04 00:46:40 +00:00
14 lines
311 B
Java
14 lines
311 B
Java
package dev.plex.command.annotation;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface CommandParameters
|
|
{
|
|
String description() default "";
|
|
|
|
String usage() default "/<command>";
|
|
|
|
String aliases() default "";
|
|
} |