23 lines
444 B
Java
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;
|
|
}
|
|
}
|