1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2025-01-09 09:32:14 +01:00

18 lines
323 B
C
Raw Normal View History

#ifndef DOORMESSAGE_H
#define DOORMESSAGE_H
2015-10-02 16:40:12 +02:00
struct Doormessage
{
Doormessage(bool isUnlockButton,
bool isLockButton,
bool isEmergencyUnlock);
Doormessage();
bool isUnlockButton = { false };
bool isLockButton = { false };
bool isEmergencyUnlock = { false };
};
#endif