18 lines
410 B
Java
18 lines
410 B
Java
|
package com.scb.phone.view.custom.transferandpay;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.widget.LinearLayout;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.BindView;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class CustomReferenceNumber extends LinearLayout {
|
||
|
|
||
|
@BindView
|
||
|
TextView mReferenceNumberTextView;
|
||
|
|
||
|
public CustomReferenceNumber(Context context) {
|
||
|
super(context);
|
||
|
}
|
||
|
}
|