package com.discord.databinding; import android.view.View; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.core.widget.NestedScrollView; import androidx.recyclerview.widget.RecyclerView; import androidx.viewbinding.ViewBinding; public final class WidgetChannelSelectorBinding implements ViewBinding { @NonNull public final NestedScrollView a; @NonNull public final RecyclerView b; public WidgetChannelSelectorBinding(@NonNull NestedScrollView nestedScrollView, @NonNull RecyclerView recyclerView, @NonNull TextView textView) { this.a = nestedScrollView; this.b = recyclerView; } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }