#ifndef AUTHDATA_H #define AUTHDATA_H #include #include #include "core/utils/api/apiEnums.h" #include "core/utils/constants/apiKeys.h" #include "core/utils/constants/apiConstants.h" namespace amnezia { struct AuthData { QString apiKey; QJsonObject toJson() const; static AuthData fromJson(const QJsonObject& json); }; } // namespace amnezia #endif // AUTHDATA_H