mirror of
https://github.com/CatimaLoyalty/Android.git
synced 2026-05-11 01:23:07 -04: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;
|
|
}
|
|
}
|