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

9 lines
150 B
Go

package models
import "encoding/xml"
type SimpleValue struct {
XMLName xml.Name `xml:"simpleValue"`
Value string `xml:"value,attr"`
}