File indexing completed on 2025-02-16 04:23:13

0001 /*
0002     SPDX-FileCopyrightText: 2022 Volker Krause <vkrause@kde.org>
0003     SPDX-License-Identifier: LGPL-2.0-or-later
0004 */
0005 
0006 #ifndef KUNIFIEDPUSH_MESSAGE_H
0007 #define KUNIFIEDPUSH_MESSAGE_H
0008 
0009 #include <QString>
0010 
0011 namespace KUnifiedPush {
0012 
0013 /** A received push notification message. */
0014 class Message
0015 {
0016 public:
0017     QString clientRemoteId;
0018     QByteArray content;
0019 };
0020 
0021 }
0022 
0023 #endif // KUNIFIEDPUSH_MESSAGE_H