summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/listview/dummydata/ContactModel.qml
blob: 53c745e9b93e1a7af99bebfa0322680501d74f54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ListModel {
    id: ContactModel
    ListElement {
        name: "Bill Smith"
        number: "555 3264"
    }
    ListElement {
        name: "John Brown"
        number: "555 8426"
    }
    ListElement {
        name: "Sam Wise"
        number: "555 0473"
    }
}