jimu-decompiled/sources/com/ubtrobot/jimu/bluetooth/base/discover/ScanResult.java
2025-05-13 19:24:51 +02:00

23 lines
444 B
Java

package com.ubtrobot.jimu.bluetooth.base.discover;
import android.bluetooth.BluetoothDevice;
/* loaded from: classes2.dex */
public class ScanResult {
private BluetoothDevice a;
private int b;
public ScanResult(BluetoothDevice bluetoothDevice, int i) {
this.a = bluetoothDevice;
this.b = i;
}
public BluetoothDevice a() {
return this.a;
}
public int b() {
return this.b;
}
}