GoSBHPF/SBHPFv1/node.go
2025-02-14 01:40:36 +01:00

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
}