aboutsummaryrefslogtreecommitdiff
path: root/plugins/Plugin.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Plugin.hpp')
-rw-r--r--plugins/Plugin.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/Plugin.hpp b/plugins/Plugin.hpp
index 9d62356..dd50998 100644
--- a/plugins/Plugin.hpp
+++ b/plugins/Plugin.hpp
@@ -7,12 +7,14 @@
namespace QuickMedia {
class BodyItem {
public:
- BodyItem(const std::string &_title): title(_title) {
+ BodyItem(const std::string &_title): title(_title), visible(true) {
}
std::string title;
- std::string cover_url;
+ std::string url;
+ std::string thumbnail_url;
+ bool visible;
};
enum class SearchResult {