You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/widgets/RedditPost.h

19 lines
451 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020, The Monero Project.
#ifndef FEATHER_REDDITPOST_H
#define FEATHER_REDDITPOST_H
#include <QString>
struct RedditPost {
RedditPost(const QString &title, const QString &author, const QString &url, int comments) : title(title), author(author), url(url), comments(comments){};
QString title;
QString author;
QString url;
int comments;
};
#endif //FEATHER_REDDITPOST_H