mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-11-16 12:09:10 +01:00
11 lines
189 B
C
11 lines
189 B
C
|
#ifndef DOORMESSAGE_H
|
||
|
#define DOORMESSAGE_H
|
||
|
|
||
|
struct Doormessage {
|
||
|
bool isUnlockButton = { false };
|
||
|
bool isLockButton = { false };
|
||
|
bool isEmergencyUnlock = { false };
|
||
|
};
|
||
|
|
||
|
#endif
|