This commit is contained in:
Wolfgang Hottgenroth
2018-01-09 17:50:46 +01:00
parent 3a8dd1b577
commit ee90ba7575

View File

@ -3,13 +3,14 @@ import { mqttHandler } from './MqttDispatcher'
export abstract class AItem {
protected topicFirstPart: string;
protected itemId: string;
private item: string;
private room: string;
protected topicFirstPart: string
protected itemId: string
private item: string
private room: string
private floor: string
protected subscribeTopics: string[]
constructor(floor: string, room: string, item: string) {
this.floor = floor
this.room = room