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

10 lines
222 B
Go

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