what-the-bank/sources/o/YT.java

14 lines
216 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public enum YT {
TILE("tile"),
BANKING_SERVICE("bankingservice");
public final String entryPoint;
YT(String str) {
this.entryPoint = str;
}
}