31 lines
567 B
Java
31 lines
567 B
Java
package com.ubtrobot.jimu.bluetooth.proxy;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class Device implements Serializable {
|
|
private String mac;
|
|
private String name;
|
|
|
|
public Device(String str, String str2) {
|
|
this.mac = str;
|
|
this.name = str2;
|
|
}
|
|
|
|
public String getMac() {
|
|
return this.mac;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public void setMac(String str) {
|
|
this.mac = str;
|
|
}
|
|
|
|
public void setName(String str) {
|
|
this.name = str;
|
|
}
|
|
}
|