package safeluck.drive.evaluation.bean;
|
|
import android.bluetooth.BluetoothDevice;
|
|
/**
|
* DriveJudge
|
* Created by lzw on 2020/9/1. 13:44:50
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*/
|
public class AYBluetoothDevice {
|
private BluetoothDevice bleDevice;
|
public AYBluetoothDevice(BluetoothDevice s) {
|
this.bleDevice= s;
|
}
|
|
public BluetoothDevice getBleDevice() {
|
return bleDevice;
|
}
|
|
public void setBleDevice(BluetoothDevice bleDevice) {
|
this.bleDevice = bleDevice;
|
}
|
|
|
}
|