discord-jadx/app/src/main/java/com/discord/stores/SelectedChannelAnalyticsLoc...

18 lines
451 B
Java

package com.discord.stores;
/* compiled from: StoreChannelsSelected.kt */
public enum SelectedChannelAnalyticsLocation {
EMBED("Embed"),
CHANNEL_LIST("Channel List"),
THREAD_BROWSER("Thread Browser");
private final String analyticsValue;
private SelectedChannelAnalyticsLocation(String str) {
this.analyticsValue = str;
}
public final String getAnalyticsValue() {
return this.analyticsValue;
}
}