8 lines
170 B
Go
8 lines
170 B
Go
package sbhpfv1
|
|
|
|
// Node is a hierarchical entity object with properties storing data.
|
|
type Node struct {
|
|
Name string
|
|
Properties []Property
|
|
Children []*Node
|
|
}
|