discord-jadx/app/src/main/java/com/discord/databinding/WidgetFeedbackSheetBinding....

38 lines
1.2 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
import com.discord.widgets.voice.feedback.FeedbackView;
public final class WidgetFeedbackSheetBinding implements ViewBinding {
@NonNull
public final NestedScrollView a;
@NonNull
public final ImageView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final NestedScrollView f1830c;
@NonNull
public final FeedbackView d;
@NonNull
public final TextView e;
public WidgetFeedbackSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull ImageView imageView, @NonNull NestedScrollView nestedScrollView2, @NonNull FeedbackView feedbackView, @NonNull TextView textView) {
this.a = nestedScrollView;
this.b = imageView;
this.f1830c = nestedScrollView2;
this.d = feedbackView;
this.e = textView;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}