mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-19 08:28:46 +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:
19
src/main/java/com/bwssystems/luupRequests/Section.java
Normal file
19
src/main/java/com/bwssystems/luupRequests/Section.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package com.bwssystems.luupRequests;
|
||||
|
||||
public class Section {
|
||||
private String name;
|
||||
private String id;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user