mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-11-20 08:10:11 +00:00
30 lines
487 B
C
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)
|