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