9 lines
257 B
Plaintext
9 lines
257 B
Plaintext
|
sub setData()
|
||
|
' We keep json around just as a reference,
|
||
|
' but ideally everything should be going through one of the interfaces
|
||
|
datum = m.top.json
|
||
|
|
||
|
m.top.id = datum.id
|
||
|
m.top.name = datum.name
|
||
|
m.top.type = datum.CollectionType
|
||
|
end sub
|