wowlet/src/widgets/RedditPost.h

20 lines
489 B
C
Raw Permalink Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2020-12-26 19:56:06 +00:00
// Copyright (c) 2020-2021, The Monero Project.
2021-03-30 10:52:29 +01:00
#ifndef WOWLET_REDDITPOST_H
#define WOWLET_REDDITPOST_H
#include <QString>
struct RedditPost {
2020-12-30 02:48:10 +00:00
RedditPost(const QString &title, const QString &author, const QString &permalink, int comments)
: title(title), author(author), permalink(permalink), comments(comments){};
QString title;
QString author;
2020-12-30 02:48:10 +00:00
QString permalink;
int comments;
};
2021-03-30 10:52:29 +01:00
#endif //WOWLET_REDDITPOST_H