2024-01-20 21:17:21 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QColor>
|
|
|
|
|
|
|
|
#include "post.h"
|
2024-04-05 16:17:24 +00:00
|
|
|
#include "models/currencies.h"
|
2024-01-20 21:17:21 +00:00
|
|
|
|
|
|
|
namespace Request {
|
|
|
|
|
|
|
|
class AddAsset : public Post {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2024-04-05 16:17:24 +00:00
|
|
|
AddAsset (
|
2024-04-07 20:07:52 +00:00
|
|
|
const QString& title,
|
|
|
|
const QString& icon,
|
|
|
|
const QColor& color,
|
|
|
|
Models::Currency::ID currency,
|
|
|
|
const QUrl& baseUrl
|
2024-04-05 16:17:24 +00:00
|
|
|
);
|
2024-01-20 21:17:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|