blob: ac367474c004ad5345aefc4c7e953b3c810ab895 (
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_MAILBOXDELETE_H
#define PUSH_NOTIFICATION_EVENT_MAILBOXDELETE_H
struct push_notification_event_mailboxdelete_data {
/* Can only be TRUE. */
bool deleted;
};
#endif
|