mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
27 lines
473 B
Java
27 lines
473 B
Java
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;
|
|
}
|
|
}
|