io.github.yogboot.common.response.SuccessResponse Maven / Gradle / Ivy
package io.github.yogboot.common.response;
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface SuccessResponse {
String value() default "";
String msg() default "";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy