mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-19 16:41:53 +00:00
Adding new classes to handle vera and updated distribution to include js
and css files in the jar.
This commit is contained in:
26
src/main/java/com/bwssystems/luupRequests/Room.java
Normal file
26
src/main/java/com/bwssystems/luupRequests/Room.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package com.bwssystems.luupRequests;
|
||||
|
||||
public class Room {
|
||||
private String name;
|
||||
private String id;
|
||||
private String section;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
public String getSection() {
|
||||
return section;
|
||||
}
|
||||
public void setSection(String section) {
|
||||
this.section = section;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user