1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-12-22 18:34:25 +01:00
doorlockd-mirror/doorlockd/lib/doormessage.h
2015-10-02 16:40:12 +02:00

13 lines
218 B
C

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