mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-01-10 07:57:55 -05:00
20 lines
440 B
Java
20 lines
440 B
Java
package protect.card_locker;
|
|
|
|
public class CatimaBarcodeWithValue {
|
|
private final CatimaBarcode mCatimaBarcode;
|
|
private final String mValue;
|
|
|
|
public CatimaBarcodeWithValue(CatimaBarcode catimaBarcode, String value) {
|
|
mCatimaBarcode = catimaBarcode;
|
|
mValue = value;
|
|
}
|
|
|
|
public CatimaBarcode catimaBarcode() {
|
|
return mCatimaBarcode;
|
|
}
|
|
|
|
public String value() {
|
|
return mValue;
|
|
}
|
|
}
|