File indexing completed on 2024-05-05 04:57:28

0001 /*
0002     This file is part of Choqok, the KDE micro-blogging client
0003 
0004     SPDX-FileCopyrightText: 2010-2012 Mehrdad Momeny <mehrdad.momeny@gmail.com>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #ifndef TWITTERLIST_H
0010 #define TWITTERLIST_H
0011 
0012 #include "choqoktypes.h"
0013 
0014 namespace Twitter
0015 {
0016 
0017 enum ListMode {Public, Private};
0018 
0019 class List
0020 {
0021 public:
0022     QString listId;
0023     QString name;
0024     QString fullname;
0025     QString slug;
0026     QString description;
0027     int subscriberCount;
0028     int memberCount;
0029     QString uri;
0030     bool isFollowing;
0031     Twitter::ListMode mode;
0032     Choqok::User author;
0033 };
0034 
0035 }
0036 #endif