1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-09-29 01:03:34 +02:00
doorlockd-mirror/doorlockd/doormessage.h
Ralf Ramsauer 8ed116bf7f Added proper client and doormessage classes
Signed-off-by: Ralf Ramsauer <ralf@ramses-pyramidenbau.de>
2015-09-25 00:50:10 +02:00

11 lines
189 B
C

#ifndef DOORMESSAGE_H
#define DOORMESSAGE_H
struct Doormessage {
bool isUnlockButton = { false };
bool isLockButton = { false };
bool isEmergencyUnlock = { false };
};
#endif