Changed the timeline window from QWidget to QDialog to gain some expected behaviours...
[squawker.git] / status.h
blob654382245073c8833b2229cb2eaacd8ba4e77205
1 #ifndef STATUS_H
2 #define STATUS_H
4 #include <QString>
5 #include <QDateTime>
7 class Status
9 public:
10 Status(){};
12 QDateTime created_at;
13 int id;
14 QString text;
15 int userId;
16 QString name;
17 QString screen_name;
18 QString location;
19 QString description;
20 QString profile_image_url;
21 QString url;
24 #endif