You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.0 KiB
Java
60 lines
1.0 KiB
Java
package com.dowse.base.util;
|
|
|
|
/* loaded from: ds_base_2.0.9_23030112.aar:classes.jar:com/dowse/base/util/StaticIP.class */
|
|
public class StaticIP {
|
|
private String ip;
|
|
private String mac;
|
|
private String mask;
|
|
private String gw;
|
|
private String dns1;
|
|
private String dns2;
|
|
|
|
public String getIp() {
|
|
return this.ip;
|
|
}
|
|
|
|
public void setIp(String ip) {
|
|
this.ip = ip;
|
|
}
|
|
|
|
public String getMac() {
|
|
return this.mac;
|
|
}
|
|
|
|
public void setMac(String mac) {
|
|
this.mac = mac;
|
|
}
|
|
|
|
public String getMask() {
|
|
return this.mask;
|
|
}
|
|
|
|
public void setMask(String mask) {
|
|
this.mask = mask;
|
|
}
|
|
|
|
public String getGw() {
|
|
return this.gw;
|
|
}
|
|
|
|
public void setGw(String gw) {
|
|
this.gw = gw;
|
|
}
|
|
|
|
public String getDns1() {
|
|
return this.dns1;
|
|
}
|
|
|
|
public void setDns1(String dns1) {
|
|
this.dns1 = dns1;
|
|
}
|
|
|
|
public String getDns2() {
|
|
return this.dns2;
|
|
}
|
|
|
|
public void setDns2(String dns2) {
|
|
this.dns2 = dns2;
|
|
}
|
|
}
|