Plex/src/main/java/me/totalfreedom/plex/command/annotation/CommandParameters.java

14 lines
323 B
Java
Raw Normal View History

package me.totalfreedom.plex.command.annotation;
2020-10-31 04:51:22 +00:00
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface CommandParameters
{
String description() default "";
2020-11-06 01:29:38 +00:00
2020-10-31 04:51:22 +00:00
String usage() default "/<command>";
2020-11-06 01:29:38 +00:00
2020-10-31 04:51:22 +00:00
String aliases() default "";
}