20 lines
363 B
C++
20 lines
363 B
C++
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QColor>
|
|
|
|
#include "post.h"
|
|
|
|
namespace Request {
|
|
|
|
class AddAsset : public Post {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
AddAsset (const QString& title, const QString& icon, const QColor& color, unsigned int currency, const QUrl& baseUrl);
|
|
};
|
|
|
|
}
|