mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
34 lines
600 B
Java
34 lines
600 B
Java
package com.bwssystems.luupRequests;
|
|
|
|
public class Scene {
|
|
private String active;
|
|
private String name;
|
|
private String id;
|
|
private String room;
|
|
public String getActive() {
|
|
return active;
|
|
}
|
|
public void setActive(String active) {
|
|
this.active = active;
|
|
}
|
|
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 getRoom() {
|
|
return room;
|
|
}
|
|
public void setRoom(String room) {
|
|
this.room = room;
|
|
}
|
|
|
|
}
|