11 lines
287 B
Go
11 lines
287 B
Go
package models
|
|
|
|
import "encoding/xml"
|
|
|
|
type Variable struct {
|
|
XMLName xml.Name `xml:"variable"`
|
|
Type Type `xml:"type"`
|
|
InitialValue *InitialValue `xml:"initialValue,omitempty"`
|
|
Documentation *Documentation `xml:"documentation,omitempty"`
|
|
}
|