File indexing completed on 2024-04-28 04:55:47

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2013-2014 Andrea Scarpino <scarpino@kde.org>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #ifndef PUMPIOPOST_H
0010 #define PUMPIOPOST_H
0011 
0012 #include <QStringList>
0013 
0014 #include "choqoktypes.h"
0015 
0016 class PumpIOPost : public Choqok::Post
0017 {
0018 public:
0019     explicit PumpIOPost();
0020     virtual ~PumpIOPost();
0021 
0022     QUrl replies;
0023     QStringList shares;
0024     QStringList to;
0025     QStringList cc;
0026     QString replyToObjectType;
0027 };
0028 
0029 #endif //PUMPIOPOST_H