status-desktop/ui/app/AppLayouts/Communities/helpers/SetSignerFeesSubscriber.qml
Noelia f1d4462f69 feat(FinaliseOwnershipPopup): Moved to Popups
- Moved finalise ownership and decline ownership popups from `ChatLayout` to `Popups`.
- Removed instance from `ChatLayout`.

Part of #12175
2023-11-08 14:35:51 +01:00

15 lines
359 B
QML

import QtQuick 2.15
/*!
\qmltype SetSignerFeesSubscriber
\inherits QtObject
\brief Helper object that holds the subscriber properties and the published properties for the fee computation.
*/
SingleFeeSubscriber {
id: root
required property string tokenKey
required property string accountAddress
required property bool enabled
}