mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-12 07:14:37 +00:00
15 lines
359 B
QML
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
|
||
|
}
|