16 lines
395 B
QML
16 lines
395 B
QML
|
import QtQuick 2.15
|
||
|
/*!
|
||
|
\qmltype BurnTokenFeesSubscriber
|
||
|
\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 amount
|
||
|
required property string accountAddress
|
||
|
required property bool enabled
|
||
|
}
|