mirror of
https://github.com/Mahdi-zarei/nekoray.git
synced 2025-12-19 05:30:06 +08:00
11 lines
142 B
C++
11 lines
142 B
C++
#pragma once
|
|
#include <QJsonObject>
|
|
|
|
namespace Configs
|
|
{
|
|
struct BuildResult {
|
|
QJsonObject object;
|
|
QString error;
|
|
};
|
|
}
|