13 lines
406 B
C++
13 lines
406 B
C++
// SPDX-FileCopyrightText: 2024 James Graham <james.h.graham@protonmail.com>
|
|
// SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
#pragma once
|
|
|
|
#include <Quotient/jobs/basejob.h>
|
|
|
|
class NeochatAdd3PIdJob : public Quotient::BaseJob
|
|
{
|
|
public:
|
|
explicit NeochatAdd3PIdJob(const QString &clientSecret, const QString &sid, const std::optional<QJsonObject> &auth = {});
|
|
};
|