blob: 6eb5c18ca35b411ec0820c22d2471bc9937a7101 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Copyright (c) 2015-2018 Dovecot authors, see the included COPYING file */
#ifndef PUSH_NOTIFICATION_EVENT_MESSAGEREAD_H
#define PUSH_NOTIFICATION_EVENT_MESSAGEREAD_H
struct push_notification_event_messageread_data {
/* Can only be TRUE. */
bool read;
};
#endif
|