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; } }