mirror of
https://github.com/monero-project/monero-gui
synced 2024-11-19 13:37:13 +01:00
9 lines
158 B
QML
9 lines
158 B
QML
import QtQuick 2.9
|
|
|
|
QtObject {
|
|
id: object
|
|
default property alias children: object.__children
|
|
|
|
property list<QtObject> __children: [QtObject {}]
|
|
}
|