9 lines
143 B
QML
9 lines
143 B
QML
|
import QtQuick 2.0
|
||
|
|
||
|
QtObject {
|
||
|
property string name: ""
|
||
|
property int height
|
||
|
property int width
|
||
|
property color color: "black"
|
||
|
}
|