blob: 340c9d7983e66398c01977070da3faf9fc38e935 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import QtQuick 2.7
ListModel {
ListElement {
color: "#af1a6a"
starts: 1
duration: 4
text: "Baustelle Adalbertstr."
}
ListElement {
color: "#134bab"
starts: 0
duration: 6
text: "Urlaub"
}
}
|