Start working on search

This commit is contained in:
kb1000
2022-05-12 00:20:35 +02:00
parent 831b76bb78
commit acc637cfcb
7 changed files with 412 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
/*
* Copyright 2022 kb1000
*
* This source is subject to the Microsoft Permissive License (MS-PL).
* Please see the COPYING.md file for more information.
*/
#pragma once
#include <QString>
#include <QMetaType>
#include <QUrl>
namespace Modrinth {
struct Modpack {
QString id;
QString name;
QUrl iconUrl;
QString author;
QString description;
bool metadataLoaded = false;
QString wikiUrl;
QString body;
};
}
Q_DECLARE_METATYPE(Modrinth::Modpack)