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

11 lines
216 B
Go

package models
import "encoding/xml"
type Array struct {
XMLName xml.Name `xml:"array"`
Lower int `xml:"lower,attr"`
Upper int `xml:"upper,attr"`
BaseType BaseType `xml:"baseType"`
}