13 lines
388 B
Java
13 lines
388 B
Java
package com.scb.phone.view.custom.transferandpay;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import android.widget.RelativeLayout;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public abstract class CustomTransferAndPayInfo extends RelativeLayout {
|
|
public CustomTransferAndPayInfo(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
}
|
|
}
|