Plex/server/src/main/java/dev/plex/command/annotation/System.java

13 lines
255 B
Java
Raw Normal View History

package dev.plex.command.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface System
{
2022-03-19 04:17:43 +00:00
String value() default "";
boolean debug() default false;
}