14 lines
375 B
C++
14 lines
375 B
C++
// SPDX-FileCopyrightText: 2023 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <Quotient/jobs/basejob.h>
|
|
#include <Quotient/omittable.h>
|
|
|
|
class NeoChatDeactivateAccountJob : public Quotient::BaseJob
|
|
{
|
|
public:
|
|
explicit NeoChatDeactivateAccountJob(const Quotient::Omittable<QJsonObject> &auth = Quotient::none);
|
|
};
|