10 lines
262 B
QML
10 lines
262 B
QML
|
// Mock of src/app/modules/main/wallet_section/buy_sell_crypto/view.nim
|
||
|
import QtQuick 2.15
|
||
|
|
||
|
QtObject {
|
||
|
readonly property string contextPropertyName: "walletSectionBuySellCrypto"
|
||
|
|
||
|
// Silence warnings
|
||
|
readonly property ListModel model: ListModel {}
|
||
|
}
|