blob: f690a4a891188aea62df6b77e3ebd86f4a5ae6a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package de.romjaki.selfbot;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by RGR on 21.05.2017.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface Configurable {
}
|