Files
plcopenxmlbuilder/models/structValue.go
T
2026-08-28 17:59:35 +02:00

9 lines
155 B
Go

package models
import "encoding/xml"
type StructValue struct {
XMLName xml.Name `xml:"structValue"`
Value []*Value `xml:"value,omitempty"`
}