1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-11-16 12:09:10 +01:00
doorlockd-mirror/doorlockd/src/doormessage.h

11 lines
189 B
C
Raw Normal View History

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