Files
2026-08-28 17:59:35 +02:00

9 lines
143 B
Go

package models
import "encoding/xml"
type ArrayValue struct {
XMLName xml.Name `xml:"arrayValue"`
Value *Value `xml:"value"`
}