23 lines
507 B
Java
23 lines
507 B
Java
|
package o;
|
||
|
|
||
|
import java.lang.annotation.ElementType;
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
import java.lang.annotation.Target;
|
||
|
|
||
|
@Target({ElementType.TYPE})
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
/* renamed from: o.gbt, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes.dex */
|
||
|
public @interface InterfaceC14918gbt {
|
||
|
String a() default "";
|
||
|
|
||
|
String b() default "";
|
||
|
|
||
|
int c() default 1;
|
||
|
|
||
|
int[] d() default {};
|
||
|
|
||
|
String e() default "";
|
||
|
}
|