13 lines
296 B
Go
13 lines
296 B
Go
package models
|
|
|
|
import (
|
|
"encoding/xml"
|
|
)
|
|
|
|
type PouInstance struct {
|
|
XMLName xml.Name `xml:"pouInstance"`
|
|
Name string `xml:"name,attr"`
|
|
TypeName string `xml:"typeName,attr"`
|
|
Documentation *Documentation `xml:"documentation,omitempty"`
|
|
}
|