19 lines
470 B
Java
19 lines
470 B
Java
|
package o;
|
||
|
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
import androidx.constraintlayout.widget.ConstraintLayout;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Lva {
|
||
|
private TextView b;
|
||
|
public final ConstraintLayout c;
|
||
|
private ImageView d;
|
||
|
|
||
|
public Lva(ConstraintLayout constraintLayout, TextView textView, ImageView imageView) {
|
||
|
this.c = constraintLayout;
|
||
|
this.b = textView;
|
||
|
this.d = imageView;
|
||
|
}
|
||
|
}
|