21 lines
406 B
Java
21 lines
406 B
Java
package com.ubtrobot.jimu.robotapi;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class BluetoothSpeakerInfo {
|
|
private String a;
|
|
private String b;
|
|
|
|
public BluetoothSpeakerInfo(String str, String str2) {
|
|
this.a = str;
|
|
this.b = str2;
|
|
}
|
|
|
|
public String a() {
|
|
return this.b;
|
|
}
|
|
|
|
public String toString() {
|
|
return "name:" + this.b + " mac:" + this.a;
|
|
}
|
|
}
|