mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-09 21:24:04 +00:00
18 lines
474 B
QML
18 lines
474 B
QML
import QtQuick 2.15
|
|
/*!
|
|
\qmltype DeployFeesSubscriber
|
|
\inherits QtObject
|
|
\brief Helper object that holds the subscriber properties and the published properties for the fee computation.
|
|
*/
|
|
|
|
SingleFeeSubscriber {
|
|
id: root
|
|
|
|
required property string communityId
|
|
required property int chainId
|
|
required property int tokenType
|
|
required property bool isOwnerDeployment
|
|
required property string accountAddress
|
|
required property bool enabled
|
|
}
|