mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
26 lines
448 B
Java
26 lines
448 B
Java
package com.bwssystems.HABridge;
|
|
|
|
public class NamedIP {
|
|
private String name;
|
|
private String ip;
|
|
private String port;
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
public String getIp() {
|
|
return ip;
|
|
}
|
|
public void setIp(String ip) {
|
|
this.ip = ip;
|
|
}
|
|
public String getPort() {
|
|
return port;
|
|
}
|
|
public void setPort(String port) {
|
|
this.port = port;
|
|
}
|
|
}
|