mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 03:42:05 +02:00
9 lines
158 B
QML
9 lines
158 B
QML
import QtQuick 2.0
|
|
|
|
QtObject {
|
|
id: object
|
|
default property alias children: object.__children
|
|
|
|
property list<QtObject> __children: [QtObject {}]
|
|
}
|