mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
21 lines
376 B
Java
21 lines
376 B
Java
package com.bwssystems.HABridge;
|
|
|
|
public class LinkParams {
|
|
private Integer seconds;
|
|
private boolean silent;
|
|
|
|
public Integer getSeconds() {
|
|
return seconds;
|
|
}
|
|
public void setSeconds(Integer seconds) {
|
|
this.seconds = seconds;
|
|
}
|
|
public boolean isSilent() {
|
|
return silent;
|
|
}
|
|
public void setSilent(boolean silent) {
|
|
this.silent = silent;
|
|
}
|
|
|
|
}
|