21 lines
296 B
C++
21 lines
296 B
C++
//SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
//SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#include "post.h"
|
|
|
|
namespace Request {
|
|
|
|
class DeleteAsset : public Post {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DeleteAsset(unsigned int id, const QUrl& baseUrl);
|
|
};
|
|
|
|
}
|
|
|