jimu-decompiled/sources/com/ubtrobot/jimu/robotapi/BluetoothSpeakerInfo.java
2025-05-13 19:24:51 +02:00

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