MultiMC5/launcher/ui/pages/modplatform/modrinth/ModrinthData.h
2022-05-12 00:20:35 +02:00

30 lines
487 B
C++

/*
* 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)